export interface IconButtonProps { label: string; iconName?: string; onClick?: (event: React.MouseEvent) => void; ref?: React.Ref; iconHide?: boolean; isDisable?: boolean; variant?: 'default' | 'primary'; }