UNPKG

welcome-ui

Version:

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

9 lines (8 loc) 353 B
import { ComponentPropsWithRef, HTMLAttributes } from 'react'; import { IconProps } from '../Icon'; export type VariantIconProps = ComponentPropsWithRef<'div'> & HTMLAttributes<HTMLDivElement> & VariantIconOptions; interface VariantIconOptions { size?: IconProps['size']; variant?: 'ai' | 'danger' | 'info' | 'success' | 'warning'; } export {};