import { Icon } from "@iconify-icon/react/dist/iconify.mjs"; import type { FC } from "react"; export const TeamMember: FC<{ name: string; bio?: string; username?: string; avatarUrl: string; socials?: { name: string; url: string; icon: string; }[]; }> = ({ name, bio, socials, avatarUrl, username }) => { return (
{`${name}'s

{name}

@{username}
{bio}
    {socials?.map((social) => (
  • ))}
); };