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) => (
{Icon && }
{label}
{value}
); export function PlusIcon({ className }: { className?: string }) { return ( ); }