UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

8 lines (7 loc) 256 B
import { ComponentProps } from 'react'; export interface CheckboxOptions { indeterminate?: boolean; variant?: Variant; } export type CheckboxProps = CheckboxOptions & ComponentProps<'input'>; export type Variant = 'danger' | 'success' | 'warning';