UNPKG

@uva-glass/component-library

Version:

React components UvA

11 lines (10 loc) 416 B
export interface StatusPillProps { /** The status to convey. */ status: 'possible' | 'impossible' | 'new'; /** The variant of the pill. */ variant?: 'default' | 'bar'; /** A description of the status. */ label: string; } /** Represents a component for a status pill. */ export declare function StatusPill({ status, variant, label }: StatusPillProps): import("react/jsx-runtime").JSX.Element;