import { LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Card } from './Card'; import { Icon } from './Icon'; import { Text } from './Text'; export interface HorizontalStatCardProps { label: string; value: string | number; icon: LucideIcon; intent?: 'primary' | 'success' | 'warning' | 'critical' | 'telemetry'; } export const HorizontalStatCard = ({ label, value, icon, intent = 'primary' }: HorizontalStatCardProps) => { return ( {label} {value} ); };