@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface DropdownToolItem

    A single item in a UIDropdownTool dropdown panel.

    interface DropdownToolItem {
        disabled?: boolean;
        icon?: string;
        id: string;
        label: string;
    }
    Index

    Properties

    Properties

    disabled?: boolean

    Whether the item is disabled.

    icon?: string

    Optional SVG icon content string.

    id: string

    Unique identifier for the dropdown item.

    label: string

    Human-readable label.