import { Wrapper } from './styles'; import { Search as SearchIcon } from '../../assets'; type SearchProps = { className?: string; color?: | 'client' | 'productOwner' | 'developer' | 'admin' | 'success' | 'warning' | 'error' | 'black' | 'white'; value: string; fullWidth?: boolean; onChange: (event: React.ChangeEvent) => void; }; const Search = ({ color = 'client', value, onChange, ...props }: SearchProps) => { return (
); }; export default Search;