@useloops/design-system
Version:
The official React based Loops design system
12 lines (9 loc) • 367 B
TypeScript
import { PropsWithChildren, FunctionComponent } from 'react';
import { KpiIndicatorColor } from './utils.js';
interface KpiIndicatorProps extends PropsWithChildren {
disabled?: boolean;
colorScheme: KpiIndicatorColor;
}
declare const KpiIndicator: FunctionComponent<KpiIndicatorProps>;
export { KpiIndicator as default };
export type { KpiIndicatorProps };