interface RadioGroupProps {
    children?: ReactNode;
    defaultValue?: null | RadioValue;
    disabled?: boolean;
    onChange?: ((val) => void);
    value?: null | RadioValue;
}

Properties

children?: ReactNode
defaultValue?: null | RadioValue
disabled?: boolean
onChange?: ((val) => void)

Type declaration

    • (val): void
    • Parameters

      • val: RadioValue

      Returns void

value?: null | RadioValue

Generated using TypeDoc