feat: add social links

This commit is contained in:
Daniel Soares
2021-12-11 13:42:11 -03:00
parent 54cab65e79
commit cd8259a0a5
10 changed files with 207 additions and 13 deletions

View File

@@ -1,9 +1,8 @@
import { VariantProps } from '@stitches/react'
import { ButtonHTMLAttributes, ReactNode } from 'react'
import { Wrapper } from './styles'
import { ButtonVariantProps, Wrapper } from './styles'
type ButtonProps = VariantProps<typeof Wrapper> &
type ButtonProps = ButtonVariantProps &
ButtonHTMLAttributes<HTMLButtonElement> & {
children: ReactNode
}