@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
12 lines (11 loc) • 349 B
TypeScript
import { AllHTMLAttributes, ReactNode } from "react";
//#region src/components/Badge/Badge.types.d.ts
interface BadgeProps extends AllHTMLAttributes<HTMLDivElement> {
children?: ReactNode;
count?: number | undefined;
label?: string;
limit?: number | undefined;
}
//#endregion
export { BadgeProps };
//# sourceMappingURL=Badge.types.d.ts.map