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