@kloudlite/design-system
Version:
A design system for building ambitious products.
10 lines (9 loc) • 327 B
TypeScript
import { ReactNode } from 'react';
interface IBadge {
type?: 'neutral' | 'info' | 'success' | 'warning' | 'critical';
children: ReactNode;
icon?: JSX.Element;
className?: string;
}
export declare const Badge: ({ type, children, icon, className, }: IBadge) => import("react/jsx-runtime").JSX.Element;
export {};