import { CSSProperties } from "react";
export interface IconProps {
    size?: number;
    color?: string;
    bgColor?: string;
    strokeWidth?: number;
    className?: string;
    style?: CSSProperties;
}
