import { CSSProperties } from "react";
import { MouseEvent } from "react";
export interface IconProps {
    width?: number;
    height?: number;
    color?: string;
    className?: string;
    onClick?: (e: MouseEvent<SVGSVGElement>) => void;
    style?: CSSProperties;
}
