import React from 'react'; import { Grid, GridCol, Paper, TextInput, Title } from '@mantine/core'; import { IconSearch } from '@tabler/icons-react'; import colors from '@/con/colors'; type HeaderSearchProps = { title: string; placeholder?: string; searchIcon?: React.ReactNode; value?: string; onChange?: (event: React.ChangeEvent) => void; }; const HeaderSearch = ({ title = "", placeholder = "pencarian", searchIcon = , value, onChange, }: HeaderSearchProps) => { return ( {title} ); }; export default HeaderSearch;