import { Box, useTheme } from "@mui/material"; interface Props { color?: string; bgcolor?: string; marL?: string; } export default function CopyIcon({ color, bgcolor, marL }: Props) { const theme = useTheme(); return ( ); }