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