Files
mobile-darmasaba/components/inputSearch.tsx
amel dee684fb88 upd: diskusi umum
- tambah diskusi umum
- tambah member pada diskusi umum

No Issues
2025-05-07 14:30:55 +08:00

17 lines
504 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}
/>
)
}