import { ButtonHTMLAttributes, ReactNode } from 'react' import { ButtonVariantProps, Wrapper } from './styles' type ButtonProps = ButtonVariantProps & ButtonHTMLAttributes & { children: ReactNode } export function Button({ children, ...rest }: ButtonProps) { return {children} }