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