UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

12 lines (11 loc) 442 B
import { default as React } from 'react'; import { CreateWuiProps } from '../System'; export type BadgeOptions = { children: number | React.ReactElement | string; disabled?: boolean; size?: 'md' | 'sm'; variant?: 'default' | 'primary'; withNumberAbbreviation?: boolean; }; export type BadgeProps = CreateWuiProps<'div', BadgeOptions>; export declare const Badge: import('../System').CreateWuiComponent<"div", BadgeProps>;