import { Tooltip, IconButton, IconButtonProps, SvgIconProps, } from "@mui/material"; import { InfoRounded } from "@mui/icons-material"; interface Props extends IconButtonProps { title?: string; icon?: React.ElementType; } export const TooltipIcon: React.FC = (props: Props) => { const { title = "", icon: Icon = InfoRounded } = props; return ( ); };