UNPKG

@snowball-tech/fractal

Version:

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

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