import type { LucideIcon } from "lucide-react"; type InfoRowProps = { icon?: LucideIcon; label: string; value: string; isPrimary?: boolean; }; export const InfoRow = ({ icon: Icon, label, value, isPrimary = false, }: InfoRowProps) => (