UNPKG

@spaced-out/ui-design-system

Version:
25 lines 817 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; import type { AlertSemanticType } from '../../types/common'; import type { IconSize, IconType } from '../../components/Icon'; type ClassNames = Readonly<{ wrapper?: string; topFoldContent?: string; middleFoldContent?: string; bottomFoldContent?: string; textContainer?: string; }>; export interface KPIBoxProps { classNames?: ClassNames; semantic?: AlertSemanticType; topContent?: React.ReactNode; middleContent?: React.ReactNode; bottomContent?: React.ReactNode; iconName?: string; iconSize?: IconSize; iconType?: IconType; testId?: string; } export declare const KPIBox: Flow.AbstractComponent<KPIBoxProps, HTMLDivElement>; export {}; //# sourceMappingURL=KPIBox.d.ts.map