Files
mobile-darmasaba/components/inputSearch.tsx
amel d3779fcf5d upd: division
Deskripsi:
- ui list diviis
- nb: blm selesai

No Issues
2025-03-06 15:37:53 +08:00

16 lines
458 B
TypeScript

import { Feather } from "@expo/vector-icons";
import { InputForm } from "./inputForm";
export default function InputSearch({ onChange, width }: { onChange?: (val: string) => void, width?: number }) {
return (
<InputForm
type="default"
placeholder="Pencarian"
round
itemLeft={<Feather name="search" size={20} color="grey" />}
onChange={onChange}
width={width}
bg="white"
/>
)
}