Trilium Frontend API
    Preparing search index...

    Interface ActionButtonProps

    From T, pick a set of properties whose keys are in the union K

    interface ActionButtonProps {
        active?: boolean;
        className?: string;
        disabled?: boolean;
        frame?: boolean;
        icon: string;
        noIconActionClass?: boolean;
        onAuxClick?: MouseEventHandler<HTMLButtonElement>;
        onClick?: MouseEventHandler<HTMLButtonElement>;
        onContextMenu?: MouseEventHandler<HTMLButtonElement>;
        text: string;
        titlePosition?: "bottom" | "left" | "right" | "top";
        triggerCommand?: keyof CommandMappings;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active?: boolean
    className?: string
    disabled?: boolean
    frame?: boolean
    icon: string
    noIconActionClass?: boolean
    text: string
    titlePosition?: "bottom" | "left" | "right" | "top"
    triggerCommand?: keyof CommandMappings