import type { ButtonHTMLAttributes, ReactNode } from 'react' import type { ButtonVariantProps } from './styles' import { Wrapper } from './styles' type ButtonProps = ButtonHTMLAttributes & { children: ReactNode colorSchema?: ButtonVariantProps['colorSchema'] styleSchema?: ButtonVariantProps['styleSchema'] font?: ButtonVariantProps['font'] outline?: ButtonVariantProps['outline'] } export function Button({ children, ...rest }: ButtonProps) { return {children} } export type { ButtonVariantProps }