import { PColor } from '../../../../assets/colors' import { IconSearch } from '../../../../assets/icons' import clsx, { type ClassValue } from 'clsx' import styles from './InputQuery.module.css' interface IInputQuery { dataForm: { search: string } placeholder: string className?: string handleChange: (e: React.ChangeEvent) => void } export const InputQuery: React.FC = ({ dataForm = { search: '' }, placeholder = '', handleChange = () => { }, className, ...rest }) => { return (
) }