UNPKG

welcome-ui

Version:

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

11 lines (10 loc) 379 B
import { ComponentPropsWithRef, HTMLAttributes } from 'react'; export type BadgeProps = BadgeOptions & ComponentPropsWithRef<'div'> & HTMLAttributes<HTMLDivElement>; interface BadgeOptions { children: number | React.ReactElement | string; disabled?: boolean; size?: 'md' | 'sm'; variant?: 'default' | 'primary'; withNumberAbbreviation?: boolean; } export {};