Deskripsi: - vertical center icon list dan grid pada list project dan divisi - mb list lembaga desa dan search page No Issues
18 lines
524 B
TypeScript
18 lines
524 B
TypeScript
import { Feather } from "@expo/vector-icons";
|
|
import { InputForm } from "./inputForm";
|
|
|
|
export default function InputSearch({ onChange, width, value }: { onChange?: (val: string) => void, width?: number, value?: string }) {
|
|
return (
|
|
<InputForm
|
|
type="default"
|
|
placeholder="Pencarian"
|
|
round
|
|
itemLeft={<Feather name="search" size={20} color="grey" />}
|
|
onChange={onChange}
|
|
width={width}
|
|
bg="white"
|
|
value={value}
|
|
mb={false}
|
|
/>
|
|
)
|
|
} |