UNPKG

welcome-ui

Version:

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

11 lines (10 loc) 301 B
import { ComponentPropsWithRef } from 'react'; export type HintProps = ComponentPropsWithRef<'span'> & HintOptions; interface HintOptions { children: React.ReactNode; /** * Change color of text according to the variant */ variant?: 'danger' | 'success' | 'warning'; } export {};