@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
17 lines (13 loc) • 470 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { AllHTMLAttributes, ReactNode } from 'react';
interface BadgeProps extends AllHTMLAttributes<HTMLDivElement> {
children?: ReactNode;
count?: number | undefined;
label?: string;
limit?: number | undefined;
}
declare const Badge: {
({ children, count, label, limit, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
displayName: string;
};
export { Badge, type BadgeProps };