import { CopyButton } from './CopyButton'; export const InfoRow = ({ icon: Icon, label, value, href, canCopy, iconColor = "text-gray-400 dark:text-gray-500" }: { icon: any, label: string, value: string | null, href?: string, canCopy?: boolean, iconColor?: string }) => { if (!value) return null; return (

{label}

{href ? ( {value} ) : ( {value} )} {canCopy && }
); };