import { CSSProperties } from 'react'; export interface IconProps { icon?: any; className?: string | string[]; type?: string; style?: CSSProperties; width?: string | number; height?: string | number; color?: string; onClick?: (e: any) => void; onMouseDown?: (e: any) => void; }