UNPKG

@dapplets/dapplet-extension

Version:
11 lines (10 loc) 379 B
import { DetailedHTMLProps, FC, HTMLAttributes } from 'react'; export interface CheckboxProps extends DetailedHTMLProps<HTMLAttributes<HTMLInputElement>, HTMLInputElement> { title: string; isCheckbox?: boolean; isSupport?: boolean; onChange?: (x: any) => void; isReadonly?: boolean; disabled?: boolean; } export declare const Checkbox: FC<CheckboxProps>;