Files
web/src/components/ui/button.tsx

45 lines
1.5 KiB
TypeScript
Raw Normal View History

2025-03-19 15:49:18 +08:00
import * as React from 'react'
import {merge} from '@/lib/utils'
import {cva, VariantProps} from 'class-variance-authority'
2025-03-14 12:40:51 +08:00
export const buttonVariants = cva(
[
`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',
'[&_svg]:pointer-events-none [&_svg:not([class*=\'size-\'])]:size-4 shrink-0 [&_svg]:shrink-0 ',
'outline-none focus-visible:ring-4 ring-blue-200',
'disabled:pointer-events-none disabled:opacity-50 ',
'aria-invalid:ring-fail/20 dark:aria-invalid:ring-fail/40 aria-invalid:border-fail',
],
{
variants: {
theme: {
gradient: 'bg-gradient-to-r from-blue-400 to-cyan-300 text-white ring-offset-2',
default: 'bg-primary text-primary-foreground hover:bg-primary/90',
outline: 'border bg-background hover:bg-secondary hover:text-secondary-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50',
ghost: 'text-foreground hover:bg-muted',
accent: 'bg-accent text-accent-foreground hover:bg-accent/90',
fail: 'bg-fail text-white hover:bg-fail/90',
warn: '',
done: '',
},
},
defaultVariants: {
theme: 'default',
},
},
)
type ButtonProps = React.ComponentProps<'button'> & VariantProps<typeof buttonVariants>
export function Button(rawProps: ButtonProps) {
const {className, theme, ...props} = rawProps
return (
<button
{...props}
className={merge(buttonVariants({theme}), className)}
/>
)
}