export type SocialIconProps = { href: string; alt: string; src: string; }; export function SocialIcon({ href, alt, src }: SocialIconProps) { return ( {alt} ); }