import { Box } from "@mui/material"; import type { SxProps } from "@mui/material"; interface Props { color: string; width?: number; sx?: SxProps; } export default function StarIconMini({ color, width = 30, sx }: Props) { return ( ); }