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