2025-03-19 15:49:18 +08:00
|
|
|
import * as React from 'react'
|
|
|
|
|
import {Slot} from '@radix-ui/react-slot'
|
|
|
|
|
import {merge} from '@/lib/utils'
|
2025-03-14 12:40:51 +08:00
|
|
|
|
2025-03-19 15:49:18 +08:00
|
|
|
type ButtonProps = React.ComponentProps<'button'> & {
|
2025-04-07 15:42:09 +08:00
|
|
|
variant?: 'default' | 'outline' | 'gradient' | 'danger'
|
2025-03-19 15:49:18 +08:00
|
|
|
}
|
2025-03-14 12:40:51 +08:00
|
|
|
|
2025-03-19 15:49:18 +08:00
|
|
|
function Button(rawProps: ButtonProps) {
|
|
|
|
|
const {className, variant, ...props} = rawProps
|
2025-03-14 12:40:51 +08:00
|
|
|
|
|
|
|
|
return (
|
2025-03-19 15:49:18 +08:00
|
|
|
<button
|
|
|
|
|
className={merge(
|
|
|
|
|
`transition-all duration-200 ease-in-out`,
|
|
|
|
|
`h-10 px-4 rounded-md cursor-pointer`,
|
|
|
|
|
'whitespace-nowrap',
|
|
|
|
|
'inline-flex items-center justify-center gap-2',
|
|
|
|
|
'disabled:pointer-events-none disabled:opacity-50 ',
|
|
|
|
|
'[&_svg]:pointer-events-none [&_svg:not([class*=\'size-\'])]:size-4 shrink-0 [&_svg]:shrink-0 ',
|
|
|
|
|
'outline-none focus-visible:ring-4 ring-blue-200',
|
|
|
|
|
'aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive',
|
|
|
|
|
{
|
|
|
|
|
gradient: 'bg-gradient-to-r from-blue-400 to-cyan-300 text-white ring-offset-2',
|
|
|
|
|
default: 'bg-primary text-primary-foreground shadow-xs hover:bg-primary/90',
|
2025-04-07 15:42:09 +08:00
|
|
|
danger: 'bg-destructive text-white shadow-xs hover:bg-destructive/90',
|
2025-03-19 15:49:18 +08:00
|
|
|
outline: 'border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50',
|
|
|
|
|
}[variant ?? 'default'],
|
|
|
|
|
className,
|
|
|
|
|
)}
|
2025-03-14 12:40:51 +08:00
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-19 15:49:18 +08:00
|
|
|
export {Button}
|