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