import * as React from "react"; import { Slot } from "@radix-ui/react-slot"; import { cva, type VariantProps } from "class-variance-authority"; import { cn } from "@/src/utils/tailwind"; import { Loader2 } from "lucide-react"; const buttonVariants = cva( "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50", { variants: { variant: { default: "bg-primary text-primary-foreground hover:bg-primary/90", destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", "destructive-secondary": "bg-secondary text-secondary-foreground border border-destructive disabled:hover:bg-secondary disabled:hover:text-secondary-foreground hover:bg-destructive/90 hover:text-destructive-foreground", outline: "border border-input bg-background hover:bg-accent hover:text-accent-foreground", secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80", tertiary: "bg-tertiary text-tertiary-foreground hover:bg-tertiary/80 text-xs font-medium", ghost: "hover:bg-accent hover:text-accent-foreground", link: "text-primary underline-offset-4 hover:underline", errorNotification: "bg-destructive-foreground/90 text-destructive hover:bg-destructive-foreground/80", }, size: { default: "h-8 px-3 py-1", xs: "h-4 px-1 rounded-sm", sm: "h-6 rounded-md px-2.5", lg: "h-9 rounded-md px-8", icon: "h-8 w-8", "icon-xs": "h-6 w-6", "icon-sm": "h-6 rounded-md px-2", }, }, defaultVariants: { variant: "default", size: "default", }, }, ); export interface ButtonProps extends React.ButtonHTMLAttributes, VariantProps { asChild?: boolean; loading?: boolean; } const Button = React.forwardRef( ( { className, variant, size, asChild = false, loading = false, disabled, onClick, children, ...props }, ref, ) => { const Comp = asChild ? Slot : "button"; return ( {loading ? : children} ); }, ); Button.displayName = "Button"; export { Button, buttonVariants }; function Spinner() { return (
); }