Files
link-free/src/components/Button/index.tsx
2021-12-14 14:18:50 -03:00

19 lines
563 B
TypeScript

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