infoalloggi-monorepo/apps/infoalloggi/src/components/ui/button.tsx

75 lines
2.7 KiB
TypeScript
Raw Normal View History

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",
{
2025-08-29 16:18:32 +02:00
defaultVariants: {
size: "default",
variant: "default",
},
2025-08-28 18:27:07 +02:00
variants: {
2025-08-29 16:18:32 +02:00
size: {
default: "h-9 px-4 py-2 has-[>svg]:px-3",
icon: "size-9",
lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
xl: "h-16 rounded-md px-5",
},
2025-08-28 18:27:07 +02:00
variant: {
default:
"bg-primary text-primary-foreground shadow-xs hover:bg-primary/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",
2025-08-29 16:18:32 +02:00
flat: "",
2025-08-28 18:27:07 +02:00
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-info text-white hover:bg-info/90 dark:text-white ",
2025-08-04 17:45:44 +02:00
2025-10-24 16:10:59 +02:00
link: "text-primary underline-offset-4 hover:underline active:underline",
2025-08-29 16:18:32 +02:00
orange:
"bg-orange-500 text-white hover:bg-orange-500/90 dark:bg-orange-900 dark:text-white dark:hover:bg-orange-900/90",
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",
success: "bg-success text-white hover:bg-success/90 dark:text-white",
2025-08-29 16:18:32 +02:00
warning:
"bg-yellow-500 text-white hover:bg-yellow-500/90 dark:bg-yellow-900 dark:text-white dark:hover:bg-yellow-900/90",
2025-08-28 18:27:07 +02:00
},
},
},
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
2025-08-29 16:18:32 +02:00
className={cn(buttonVariants({ className, size, variant }))}
2025-08-28 18:27:07 +02:00
data-slot="button"
{...props}
/>
);
2025-08-04 17:45:44 +02:00
}
export { Button, buttonVariants };