import PropTypes from 'prop-types' import React from 'react' import { PColor } from '../../../../assets/colors' import { IconSearch } from '../../../../assets/icons' import styles from './InputQuery.module.css' export const InputQuery = ({ dataForm = { search: '' }, placeholder = '', handleChange = () => { return }, ...rest }) => { return (
) } InputQuery.propTypes = { dataForm: PropTypes.object, handleChange: PropTypes.func, placeholder: PropTypes.string }