export interface SmartIconType { Name: string; Size?: number; Color?: string; ClassName?: string; Variant?: string; } export type IconType = React.ElementType | React.ReactNode | SmartIconType;