///
import { SxProps } from '@mui/material';
export interface IconWithBadgeProps {
mainIcon: string;
overlayIcon?: React.ReactNode;
mainIconAlt?: string;
overlayIconAlt?: string;
mainIconSize?: number;
overlayIconSize?: number;
containerSize?: number;
overlayPosition?: {
top: number;
left: number;
};
borderColor?: string;
label?: string;
sx?: SxProps;
containerSx?: SxProps;
onError?: (e: React.SyntheticEvent) => void;
}