Rezi
    Preparing search index...

    Type Alias CheckboxProps

    CheckboxProps: Readonly<
        {
            accessibleLabel?: string;
            checked: boolean;
            disabled?: boolean;
            dsSize?: WidgetSize;
            dsTone?: WidgetTone;
            focusable?: boolean;
            focusConfig?: FocusConfig;
            id: string;
            key?: string;
            label?: string;
            onChange?: (checked: boolean) => void;
        },
    >

    Props for checkbox widget.