import * as React from "react" import { cva, type VariantProps } from "class-variance-authority" 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-1 focus-visible:ring-zinc-400 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", { variants: { variant: { default: "bg-zinc-50 text-zinc-900 shadow hover:bg-zinc-50/90", destructive: "bg-red-500/10 text-red-400 border border-red-500/20 hover:bg-red-500/20", outline: "border border-zinc-700 bg-transparent shadow-sm hover:bg-zinc-800 hover:text-zinc-50", secondary: "bg-zinc-800 text-zinc-50 shadow-sm hover:bg-zinc-700", ghost: "hover:bg-zinc-800 hover:text-zinc-50", link: "text-zinc-50 underline-offset-4 hover:underline", primary: "bg-blue-600 text-white shadow hover:bg-blue-500", success: "bg-emerald-600 text-white shadow hover:bg-emerald-500", }, size: { default: "h-9 px-4 py-2", sm: "h-8 rounded-md px-3 text-xs", lg: "h-10 rounded-md px-8", icon: "h-9 w-9", xs: "h-7 rounded px-2 text-xs", }, }, defaultVariants: { variant: "default", size: "default", }, } ) export interface ButtonProps extends React.ButtonHTMLAttributes, VariantProps {} const Button = React.forwardRef( ({ className, variant, size, ...props }, ref) => { return (