import { Wrapper } from './styles'; import SearchIcon from '../../assets/icons/search.svg?react'; export type SearchProps = { className?: string; color?: | 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'black' | 'white'; value: string; fullWidth?: boolean; onChange: (event: React.ChangeEvent) => void; }; const Search = ({ color = 'primary', value, onChange, ...props }: SearchProps) => { return (
); }; export default Search;