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

Hierarchy (View Summary)

Properties

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