export const ExternalLink = ({ href, children, }: { href: string; children: React.ReactNode; }) => { return ( {children} ); };