import { FC, useContext } from 'react'; import { ThemeContext } from '../../styles/theme'; import { Props } from './types'; import { Btn } from './styles'; import Link from 'next/link'; const Button: FC = ({ variant = 'text', href, target, onClick, children, className }) => { return ( {children} ); }; export default Button;