UNPKG

welcome-ui

Version:

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

10 lines (9 loc) 284 B
import { ComponentPropsWithRef } from 'react'; export type LabelProps = ComponentPropsWithRef<'label'> & LabelOptions; interface LabelOptions { children: React.ReactNode; disabled?: boolean; required?: boolean; variant?: 'danger' | 'success' | 'warning'; } export {};