export type IconProps = {
    fill?: string;
    color?: string;
    stroke?: string;
    width?: string | number;
    height?: string | number;
    bgColor?: string;
    className?: string;
    style?: React.CSSProperties;
    transform?: string;
    size?: string | number;
    onClick?: () => void;
};
