2025-08-04 17:45:44 +02:00
|
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
2025-08-28 18:27:07 +02:00
|
|
|
import { Slot as SlotPrimitive } from "radix-ui";
|
|
|
|
|
import type * as React from "react";
|
2025-08-04 17:45:44 +02:00
|
|
|
|
|
|
|
|
import { cn } from "~/lib/utils";
|
|
|
|
|
|
|
|
|
|
const buttonVariants = cva(
|
2025-08-28 18:27:07 +02:00
|
|
|
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all cursor-pointer disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-hidden focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
|
|
|
|
|
{
|
|
|
|
|
variants: {
|
|
|
|
|
variant: {
|
|
|
|
|
default:
|
|
|
|
|
"bg-primary text-primary-foreground shadow-xs hover:bg-primary/90",
|
|
|
|
|
success:
|
|
|
|
|
"bg-green-500 text-white hover:bg-green-500/90 dark:bg-green-900 dark:text-white dark:hover:bg-green-900/90",
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
destructive:
|
|
|
|
|
"bg-destructive text-white shadow-xs hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
|
|
|
|
|
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",
|
|
|
|
|
secondary:
|
|
|
|
|
"bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80",
|
|
|
|
|
ghost:
|
|
|
|
|
"hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",
|
|
|
|
|
grey: "bg-accent/30 text-accent-foreground shadow-sm hover:bg-accent/80 dark:bg-muted dark:text-muted-foreground dark:hover:bg-muted dark:hover:text-white",
|
|
|
|
|
info: "bg-sky-500 text-white hover:bg-sky-500/90 dark:bg-sky-900 dark:text-white dark:hover:bg-sky-900/90",
|
|
|
|
|
warning:
|
|
|
|
|
"bg-yellow-500 text-white hover:bg-yellow-500/90 dark:bg-yellow-900 dark:text-white dark:hover:bg-yellow-900/90",
|
|
|
|
|
orange:
|
|
|
|
|
"bg-orange-500 text-white hover:bg-orange-500/90 dark:bg-orange-900 dark:text-white dark:hover:bg-orange-900/90",
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
link: "text-primary underline-offset-4 hover:underline",
|
|
|
|
|
flat: "",
|
|
|
|
|
},
|
|
|
|
|
size: {
|
|
|
|
|
default: "h-9 px-4 py-2 has-[>svg]:px-3",
|
|
|
|
|
sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
|
|
|
|
|
lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
|
|
|
|
|
icon: "size-9",
|
|
|
|
|
xl: "h-16 rounded-md px-5",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
defaultVariants: {
|
|
|
|
|
variant: "default",
|
|
|
|
|
size: "default",
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-08-04 17:45:44 +02:00
|
|
|
);
|
|
|
|
|
export type ButtonConfigs = Pick<ButtonProps, "variant" | "size">;
|
|
|
|
|
|
|
|
|
|
export interface ButtonProps
|
2025-08-28 18:27:07 +02:00
|
|
|
extends React.ComponentProps<"button">,
|
|
|
|
|
VariantProps<typeof buttonVariants> {
|
|
|
|
|
asChild?: boolean;
|
2025-08-04 17:45:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function Button({
|
2025-08-28 18:27:07 +02:00
|
|
|
className,
|
|
|
|
|
variant,
|
|
|
|
|
size,
|
|
|
|
|
asChild = false,
|
|
|
|
|
...props
|
2025-08-04 17:45:44 +02:00
|
|
|
}: ButtonProps) {
|
2025-08-28 18:27:07 +02:00
|
|
|
const Comp = asChild ? SlotPrimitive.Slot : "button";
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
return (
|
|
|
|
|
<Comp
|
|
|
|
|
data-slot="button"
|
|
|
|
|
className={cn(buttonVariants({ variant, size, className }))}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
2025-08-04 17:45:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export { Button, buttonVariants };
|