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