import Badge from "../badge/badge"; import DirectionMetric from "../direction-metric/direction-metric"; import Typography from "../typography/typography"; import Wrapper from "../wrapper/wrapper"; /* eslint-disable-next-line */ export interface CardProps { title: string; value: number; status: { label: string; isComplete: boolean; }[]; directionMetric: { description: string; data: { value: number; limit: number; }; }; } export function Card({ title, value, status, directionMetric }: CardProps) { return (