UNPKG

@snowball-tech/fractal

Version:

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

10 lines (7 loc) 224 B
import { AllHTMLAttributes } from 'react'; interface BadgeProps extends AllHTMLAttributes<HTMLDivElement> { count?: number | undefined; label?: string; limit?: number | undefined; } export type { BadgeProps };