@uva-glass/component-library
Version:
React components UvA
8 lines (7 loc) • 338 B
TypeScript
export interface StatusBadgeProps {
/** Text on the badge */
label: string;
/** true to render the card with high contrast colors; otherwise, false. The default is false. */
highContrast?: boolean;
}
export declare const StatusBadge: ({ label, highContrast }: StatusBadgeProps) => import("react/jsx-runtime").JSX.Element;