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