UNPKG

@snowball-tech/fractal

Version:

Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS

11 lines (8 loc) 261 B
import { AllHTMLAttributes, ReactNode } from 'react'; interface BadgeProps extends AllHTMLAttributes<HTMLDivElement> { children?: ReactNode; count?: number | undefined; label?: string; limit?: number | undefined; } export type { BadgeProps };