import { FC } from 'react'; interface IconSearchProps { className?: string; } const IconSearch: FC = ({ className }) => { return ( ); }; export default IconSearch;