Guaxu Docs
    Preparing search index...

    Type Alias RadioCardListProps

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

    Properties

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