@useloops/design-system
Version:
The official React based Loops design system
21 lines (18 loc) • 750 B
TypeScript
import * as react from 'react';
import { MenuProps } from '../../WebCore/Menu/Menu.js';
import { SurfaceProps } from '../../WebCore/Surface/Surface.js';
import { KpiIndicatorColor } from '../KpiIndicator/utils.js';
interface TestKPICardProps extends Omit<SurfaceProps, 'variation'> {
colorScheme?: KpiIndicatorColor;
variation?: 'dimmed' | 'default';
active?: boolean;
disabled?: boolean;
title?: string;
description?: string;
loading?: boolean;
onShowMoreClick?: () => void;
menuItems?: MenuProps['menuItems'];
}
declare const TestKPICard: react.ForwardRefExoticComponent<Omit<TestKPICardProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
export { TestKPICard as default };
export type { TestKPICardProps };