Spaces:
Running
Running
| import { Slot } from "@radix-ui/react-slot"; | |
| import { cva, type VariantProps } from "class-variance-authority"; | |
| import * as React from "react"; | |
| import { cn } from "@/lib/utils"; | |
| const buttonVariants = cva( | |
| "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[var(--color-ring)] focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", | |
| { | |
| variants: { | |
| variant: { | |
| default: | |
| "bg-[var(--color-primary)] text-[var(--color-primary-foreground)] hover:opacity-90", | |
| secondary: | |
| "bg-[var(--color-secondary)] text-[var(--color-secondary-foreground)] hover:opacity-90", | |
| outline: | |
| "border border-[var(--color-border)] bg-[var(--color-background)] hover:bg-[var(--color-accent)] hover:text-[var(--color-accent-foreground)]", | |
| ghost: | |
| "hover:bg-[var(--color-accent)] hover:text-[var(--color-accent-foreground)]", | |
| destructive: | |
| "bg-[var(--color-destructive)] text-[var(--color-destructive-foreground)] hover:opacity-90", | |
| }, | |
| size: { | |
| default: "h-9 px-4 py-2", | |
| sm: "h-8 rounded-md px-3 text-xs", | |
| lg: "h-10 rounded-md px-6", | |
| icon: "h-9 w-9", | |
| }, | |
| }, | |
| defaultVariants: { variant: "default", size: "default" }, | |
| }, | |
| ); | |
| export interface ButtonProps | |
| extends | |
| React.ButtonHTMLAttributes<HTMLButtonElement>, | |
| VariantProps<typeof buttonVariants> { | |
| asChild?: boolean; | |
| } | |
| export const Button = React.forwardRef<HTMLButtonElement, ButtonProps>( | |
| ({ className, variant, size, asChild = false, ...props }, ref) => { | |
| const Comp = asChild ? Slot : "button"; | |
| return ( | |
| <Comp | |
| ref={ref} | |
| className={cn(buttonVariants({ variant, size, className }))} | |
| {...props} | |
| /> | |
| ); | |
| }, | |
| ); | |
| Button.displayName = "Button"; | |
| export { buttonVariants }; | |