import { Props } from './types'; import { StyledButton } from './styles'; const Button = ({ variant = 'text', href, target, onClick, children, className, }: Props) => ( {children} ); export default Button;