UNPKG

@findnlink/ui

Version:
10 lines (9 loc) 305 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'; }