UNPKG

@snowball-tech/fractal

Version:

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

16 lines (12 loc) 423 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { AllHTMLAttributes } from 'react'; interface BadgeProps extends AllHTMLAttributes<HTMLDivElement> { count?: number | undefined; label?: string; limit?: number | undefined; } declare const Badge: { ({ count, label, limit, ...props }: BadgeProps): react_jsx_runtime.JSX.Element; displayName: string; }; export { Badge, type BadgeProps };