"use client" interface InfoRowProps { label: string value: string icon?: React.ReactNode } export function InfoRow({ label, value, icon }: InfoRowProps) { return (
{label}
{value} {icon}
) }