Guaxu Docs
    Preparing search index...

    Type Alias RadioListProps

    type RadioListProps = {
        children: (option: RadioButtonProps) => ReactNode;
        isDisabled?: boolean;
        onChange: (value: string) => void;
        options: RadioButtonProps[];
        selectedValue: string;
    }
    Index

    Properties

    children: (option: RadioButtonProps) => ReactNode
    isDisabled?: boolean
    onChange: (value: string) => void
    options: RadioButtonProps[]
    selectedValue: string