Rezi
    Preparing search index...

    Type Alias RadioGroupProps

    RadioGroupProps: Readonly<
        {
            accessibleLabel?: string;
            direction?: "horizontal"
            | "vertical";
            disabled?: boolean;
            dsSize?: WidgetSize;
            dsTone?: WidgetTone;
            focusable?: boolean;
            focusConfig?: FocusConfig;
            id: string;
            key?: string;
            onChange?: (value: string) => void;
            options: readonly SelectOption[];
            value: string;
        },
    >

    Props for radio group widget.