Sha256: 9b3ddcc5d917d3525c32a32a63fb470459cc7fdb087c8193a07500a78604c76e

Contents?: true

Size: 657 Bytes

Versions: 2

Compression:

Stored size: 657 Bytes

Contents

import React from 'react';
import { GlobalProps } from '../utilities/globalProps';
declare type CheckboxProps = {
    aria?: {
        [key: string]: string;
    };
    checked?: boolean;
    children?: React.ReactChild[] | React.ReactChild;
    className?: string;
    dark?: boolean;
    data?: {
        [key: string]: string;
    };
    error?: boolean;
    id?: string;
    indeterminate?: boolean;
    name?: string;
    onChange?: (event: React.FormEvent<HTMLInputElement>) => void;
    tabIndex?: number;
    text?: string;
    value?: string;
} & GlobalProps;
declare const Checkbox: (props: CheckboxProps) => JSX.Element;
export default Checkbox;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1609 app/pb_kits/playbook/pb_checkbox/_checkbox.d.ts
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1608 app/pb_kits/playbook/pb_checkbox/_checkbox.d.ts