import React from 'react'; import { Box } from './Box'; import { Text } from './Text'; import { Icon } from './Icon'; import { LucideIcon } from 'lucide-react'; interface InfoItemProps { icon: LucideIcon; label: string; value: string | number; } export function InfoItem({ icon, label, value }: InfoItemProps) { return ( {label} {value} ); }