@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 404 B
TypeScript
import React from 'react';
export type Props = {
type: 'big' | 'small';
description: string;
value: string | number;
withIcon?: JSX.Element;
isInACard?: boolean;
cardColor?: string;
className?: string;
};
declare const StatisticCard: ({ type, description, value, withIcon, isInACard, cardColor, className, }: Props) => React.JSX.Element;
export { StatisticCard };