upd: ui group
Deskripsi: - ui page group - ui tab button - ui list data group - ui modal bottom drawer - ui menu item row - ui tambah data No Issues
This commit is contained in:
14
components/inputSearch.tsx
Normal file
14
components/inputSearch.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Feather } from "@expo/vector-icons";
|
||||
import { InputForm } from "./inputForm";
|
||||
|
||||
export default function InputSearch({ onChange }: { onChange?: (val: string) => void }) {
|
||||
return (
|
||||
<InputForm
|
||||
type="default"
|
||||
placeholder="Pencarian"
|
||||
round
|
||||
itemLeft={<Feather name="search" size={20} color="grey" />}
|
||||
onChange={onChange}
|
||||
/>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user