Interface GenericButtonProps

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

Hierarchy (View Summary)

  • ButtonHTMLAttributes<HTMLButtonElement>

Properties

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