Deskripsi: - ui page group - ui tab button - ui list data group - ui modal bottom drawer - ui menu item row - ui tambah data No Issues
14 lines
392 B
TypeScript
14 lines
392 B
TypeScript
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}
|
|
/>
|
|
)
|
|
} |