UNPKG

welcome-ui

Version:

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

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