import { IconButton } from "@mui/material"; type InfoProps = { width?: number; height?: number; }; export default function Info({ width = 20, height = 20 }: InfoProps) { return ( ); }