import React from 'react'; import { useTheme } from 'styled-components'; import { Typography } from '..'; import { LaunchIcon } from '../../icons'; import { Badge } from './styles'; type LinkBadgeProps = { link: string | undefined; }; const LinkBadge: React.FC = ({ link }) => { const theme = useTheme(); if (!link) { return null; } return ( {link} ); }; export default LinkBadge;