File size: 808 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import clsx from 'clsx'
import { ReactNode } from 'react'
import { button, inner } from './GradientButton.css'
interface GradientButtonProps {
children: ReactNode
href?: string
tag?: keyof React.JSX.IntrinsicElements
className?: string
variant?: 'regular' | 'small'
type?: 'button' | 'submit'
}
export const GradientButton = ({
className,
href,
children,
tag = 'a',
variant = 'regular',
type = 'button',
...props
}: GradientButtonProps) => {
const Element = tag
return (
<Element
className={clsx(button({ size: variant }), className)}
href={href}
// @ts-expect-error – polymorphic component
type={tag === 'button' ? type : undefined}
{...props}
>
<span className={inner({ size: variant })}>{children}</span>
</Element>
)
}
|