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