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