UNPKG

welcome-ui

Version:

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

8 lines (7 loc) 232 B
import { ComponentPropsWithRef } from 'react'; export type HintProps = ComponentPropsWithRef<'span'> & HintOptions; interface HintOptions { children: React.ReactNode; variant?: 'danger' | 'success' | 'warning'; } export {};