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