UNPKG

@findnlink/ui

Version:
11 lines (9 loc) 279 B
import { HTMLAttributes, ReactNode } from 'react' export interface CheckboxProps<>extends HTMLAttributes<HTMLInputElement> { children: ReactNode checked: boolean error?: boolean disabled?: boolean size?: 's' | 'm' | 'l' | 'xl' weight?: 'light' | 'normal' | 'bold' }