├── 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 |
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 |
27 | );
28 | };
29 |
--------------------------------------------------------------------------------