import React from 'react'; interface ContactInfoLineProps { icon: React.ReactNode; href?: string; children?: React.ReactNode; } const ContactInfoLine = ({ icon, href, children }: ContactInfoLineProps) => { const content = href ? ( {children} ) : ( {children} ); return (
{icon}
{content}
); }; export default React.memo(ContactInfoLine);