├── FilterIcon.jsx └── SearchIcon.jsx /FilterIcon.jsx: -------------------------------------------------------------------------------- 1 | import { useMemo } from 'react'; 2 | import { v4 as uuidv4 } from 'uuid'; 3 | 4 | export const FilterIcon = (props) => { 5 | const id = useMemo(() => uuidv4(), []); 6 | return ( 7 | 15 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | ); 28 | }; 29 | -------------------------------------------------------------------------------- /SearchIcon.jsx: -------------------------------------------------------------------------------- 1 | import { useMemo } from 'react'; 2 | import { v4 as uuidv4 } from 'uuid'; 3 | 4 | export const SearchIcon = (props) => { 5 | const id = useMemo(() => uuidv4(), []); 6 | return ( 7 | 15 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | ); 28 | }; 29 | --------------------------------------------------------------------------------