A single option in a SegmentedControl.

interface SegmentedOption {
    disabled?: boolean;
    label: ReactNode;
    value: string;
}

Properties

Properties

disabled?: boolean
label: ReactNode
value: string