UNPKG

@hhgtech/hhg-components

Version:
13 lines (12 loc) 404 B
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 };