UNPKG

@octopusdeploy/design-system-components

Version:
8 lines (7 loc) 298 B
export interface CounterBadgeProps { /** The visual style of the badge */ type: "solid" | "outlined"; /** The text content to display in the badge */ label: string; } export declare function CounterBadge({ type, label }: CounterBadgeProps): import("react/jsx-runtime").JSX.Element;