changed name of SearchBar to TextInputBar

This commit is contained in:
Jakob Stornig 2024-01-04 21:47:10 +01:00
parent 5876fcaf8e
commit e1efed5b21
2 changed files with 8 additions and 6 deletions

View file

@ -5,11 +5,13 @@ import ExpenseItem from "./home/expenseItem"
//common
import CustomCard from "./common/CustomCard"
import SearchBar from "./common/SearchBar"
import NavigationButton from "./common/button"
import LoadingSymbol from "./common/loadingSymbol"
import Plus from "./common/plus"
import TextInputBar from "./common/TextInputBar"
import AutoDecimalInput from "./common/AutoDecimalInput"
import CategorySelector from "./common/CategorySelector"
import CategorySelectorModal from "./common/CategorySelectorModal"
//login
import BudgetHeader from "./budget/budgetHeader"
@ -21,8 +23,8 @@ import TypeSelectorSwitch from "./budget/typeSelectorSwitch"
import Input from "./login/input"
export {
BudgetHeader, ButtonSetting, CategoryItem, CustomCard, CustomColorPicker, ExpenseItem, Input,
LoadingSymbol, NavigationButton, Plus,
SearchBar, ToggleSetting, TypeSelectorSwitch, Welcome, AutoDecimalInput
BudgetHeader, ButtonSetting, CustomCard, ExpenseItem, Input,
LoadingSymbol, Plus,
TextInputBar, ToggleSetting, Welcome, AutoDecimalInput
}