diff --git a/src/assets/Icons/Search.tsx b/src/assets/Icons/Search.tsx new file mode 100644 index 0000000..64ae644 --- /dev/null +++ b/src/assets/Icons/Search.tsx @@ -0,0 +1,26 @@ +import { useTheme } from '@mui/material'; +import { SVGProps } from './interfaces'; + +export const Search: React.FC = ({ color, opacity, ...children }) => { + const theme = useTheme(); + + const setColor = color ? color : theme.palette.text.primary; + const setOpacity = opacity ? opacity : 1; + + return ( + + + + ); +};