iink-ts - v4.0.0
    Preparing search index...

    Type Alias TButtonElConfig

    type TButtonElConfig = {
        className?: string | string[];
        disabled?: boolean;
        html?: string;
        icon?: string;
        id?: string;
        label?: string;
        onClick?: (e: MouseEvent) => void;
        onPointerDown?: (e: PointerEvent) => void;
        onPointerUp?: (e: PointerEvent) => void;
        title?: string;
        type?: "button" | "submit" | "reset";
        variant?:
            | "primary"
            | "secondary"
            | "tertiary"
            | "success"
            | "danger"
            | "warning"
            | "info";
    }
    Index
    className?: string | string[]
    disabled?: boolean
    html?: string
    icon?: string
    id?: string
    label?: string
    onClick?: (e: MouseEvent) => void
    onPointerDown?: (e: PointerEvent) => void
    onPointerUp?: (e: PointerEvent) => void
    title?: string
    type?: "button" | "submit" | "reset"
    variant?:
        | "primary"
        | "secondary"
        | "tertiary"
        | "success"
        | "danger"
        | "warning"
        | "info"