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

    Interface SegmentedItem

    A single item in a segmented control.

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

    Properties

    Properties

    disabled?: boolean

    Whether this item is individually disabled.

    icon?: string

    Optional SVG inner-content for a leading icon. Uses the same format as UIIcon [svg].

    id: string

    Unique identifier — used as the bound value.

    label: string

    Display label.