UNPKG

@findnlink/neuro-ui

Version:
7 lines (6 loc) 244 B
import { HTMLAttributes, ReactNode } from 'react'; import { UtilInterface } from '../../util/interfaces'; export interface CheckboxProps extends HTMLAttributes<HTMLInputElement>, UtilInterface { children: ReactNode; checked: boolean; }