interface CheckboxGroupProps {
    children?: ReactNode;
    defaultValue?: CheckboxValue[];
    disabled?: boolean;
    onChange?: ((val) => void);
    value?: CheckboxValue[];
}

Properties

children?: ReactNode
defaultValue?: CheckboxValue[]
disabled?: boolean
onChange?: ((val) => void)

Type declaration

    • (val): void
    • Parameters

      • val: CheckboxValue[]

      Returns void

value?: CheckboxValue[]

Generated using TypeDoc