// app/components/SocialIcon.tsx import React from 'react'; interface SocialIconProps { href: string; title: string; children: React.ReactNode; } export default function SocialIcon({ href, title, children }: SocialIconProps) { return ( {children} ); }