@spaced-out/ui-design-system
Version:
Sense UI components library
26 lines • 863 B
TypeScript
import type { Flow } from 'flow-to-typescript-codemod';
import * as COLORS from '../../styles/variables/_color';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export declare const STATUS_SEMANTIC: Readonly<{
primary: "primary";
information: "information";
success: "success";
warning: "warning";
danger: "danger";
neutral: "neutral";
secondary: "secondary";
}>;
export type StatusSemanticType = (typeof STATUS_SEMANTIC)[keyof typeof STATUS_SEMANTIC];
export interface StatusIndicatorProps {
classNames?: ClassNames;
status?: StatusSemanticType;
withBorder?: boolean;
borderColorToken?: keyof typeof COLORS;
disabled?: boolean;
testId?: string;
}
export declare const StatusIndicator: Flow.AbstractComponent<StatusIndicatorProps, HTMLDivElement>;
export {};
//# sourceMappingURL=StatusIndicator.d.ts.map