@hmiproject/helio-sdk
    Preparing search index...

    Type Alias RadioGroupOptionType<ValueType>

    A single selectable option of a RadioGroup.

    type RadioGroupOptionType<ValueType> = {
        label: ReactNode;
        value: ValueType;
    }

    Type Parameters

    • ValueType
    Index

    Properties

    Properties

    label: ReactNode

    Label displayed next to the radio button.

    value: ValueType

    The value reported through onValueChange when this option is selected.