import React from "react"; import { FiExternalLink } from "react-icons/fi"; export interface SocialCardProps { children: React.ReactNode; color: string; link: string; } export const SocialCard = ({ children, color, link, }: SocialCardProps): JSX.Element => { return (
); };