interface IconButtonProps {
    className?: string;
    loading?: boolean;
    tooltip?: string | ReactElement<any, string | JSXElementConstructor<any>>;
    tooltipProps?: Partial<Omit<GenericTooltipProps, "children" | "tooltip">>;
    size?: ButtonSizeType;
    isActive?: boolean;
}

Hierarchy

Properties

className?: string
loading?: boolean
tooltip?: string | ReactElement<any, string | JSXElementConstructor<any>>
tooltipProps?: Partial<Omit<GenericTooltipProps, "children" | "tooltip">>
isActive?: boolean