mirror of
https://github.com/dsoaress/link-free.git
synced 2026-08-18 07:26:03 +01:00
feat: test ISR
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
import { ButtonHTMLAttributes, ReactNode } from 'react'
|
||||
import type { ButtonHTMLAttributes, ReactNode } from 'react'
|
||||
|
||||
import { ButtonVariantProps, Wrapper } from './styles'
|
||||
import type { ButtonVariantProps } from './styles'
|
||||
import { Wrapper } from './styles'
|
||||
|
||||
type ButtonProps = ButtonVariantProps &
|
||||
ButtonHTMLAttributes<HTMLButtonElement> & {
|
||||
children: ReactNode
|
||||
}
|
||||
type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
||||
children: ReactNode
|
||||
theme?: ButtonVariantProps['theme']
|
||||
schema?: ButtonVariantProps['schema']
|
||||
outline?: ButtonVariantProps['outline']
|
||||
font?: ButtonVariantProps['font']
|
||||
}
|
||||
|
||||
export function Button({ children, ...rest }: ButtonProps) {
|
||||
return <Wrapper {...rest}>{children}</Wrapper>
|
||||
}
|
||||
|
||||
export type { ButtonVariantProps }
|
||||
|
||||
Reference in New Issue
Block a user