@engie-group/fluid-design-system
Version:
The Fluid Design System is ENGIE’s open-source library to create, build and deliver ENGIE digital services in a more efficient way.
16 lines (15 loc) • 713 B
TypeScript
import { Scale } from '../../variations';
export declare const STATUS_INDICATOR_SCALES: readonly ["sm", "md", "lg"];
export type StatusIndicatorScale = Extract<Scale, (typeof STATUS_INDICATOR_SCALES)[number]>;
export declare const STATUS_INDICATOR_STATUSES: readonly ["offline", "online", "away", "do-not-disturb", "busy", "unknown", "error", "success", "warning", "in-progress", "information", "discovery", "planet", "ai"];
export type StatusIndicatorStatus = (typeof STATUS_INDICATOR_STATUSES)[number];
export type StatusIndicatorProperties = {
/**
* Status indicator scale
*/
scale?: StatusIndicatorScale;
/**
* Status indicator status
*/
status?: StatusIndicatorStatus;
};