import { Box } from "@mui/material"; interface Props { height: string; width: string; color: string; } export default function PencilCircleIcon({ height, width, color }: Props) { return ( ); }