import { useTheme } from '@mui/material'; import React from 'react'; export const CopyIcon = ({ color, height = 11, width = 10 }) => { const theme = useTheme(); const setColor = color ? color : theme.palette.text.primary; return ( ); };