/** * Copyright (c) 2013-present, Facebook, Inc. * * @emails react-core * @flow */ 'use strict'; import React from 'react'; import {colors} from 'theme'; import ExternalLinkSvg from 'templates/components/ExternalLinkSvg'; import type {Node} from 'react'; type Props = { children: Node, href: string, target?: string, rel?: string, }; const ExternalFooterLink = ({children, href, target, rel}: Props) => ( {children} ); export default ExternalFooterLink;