import type React from 'react';
export type IconProps = {
    color?: string;
    size?: string;
    className?: string;
} & React.SVGProps<SVGSVGElement>;
