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