import React from 'react' import * as styles from './styles.css' type Props = React.PropsWithChildren & styles.Variants & { href: string target?: '_blank' rel?: 'noreferrer' } export const TextLink: React.FC = ({ children, href, underline, target, rel, color, }) => { return ( {children} ) }