Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
808 Bytes
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-errorpolymorphic component
type={tag === 'button' ? type : undefined}
{...props}
>
<span className={inner({ size: variant })}>{children}</span>
</Element>
)
}