mirror of
https://github.com/root-fr/jmap-webmail.git
synced 2026-09-22 16:01:12 +00:00
* fix: more margin on the avatar to align with subject * fix: fixed multi day events multiple items gap spacing * fix: align sticky week headers with calendar grid * fix: nice confirm modal * fix: added locales * fix: polish confirm dialog behavior and participant delete messaging * fix: apply themed destructive colors without button shadow * fix: restore destructive button theme styling
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import * as React from "react";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export interface ButtonProps
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
variant?: "default" | "ghost" | "outline" | "destructive";
|
|
size?: "sm" | "md" | "lg" | "icon";
|
|
}
|
|
|
|
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
|
({ className, variant = "default", size = "md", ...props }, ref) => {
|
|
return (
|
|
<button
|
|
className={cn(
|
|
"inline-flex items-center justify-center rounded-md font-medium transition-all duration-200",
|
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background",
|
|
"disabled:pointer-events-none disabled:opacity-50",
|
|
{
|
|
default:
|
|
"bg-primary text-primary-foreground hover:bg-primary/90 shadow-sm hover:shadow",
|
|
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
outline:
|
|
"border border-input bg-background hover:bg-accent hover:text-accent-foreground",
|
|
destructive:
|
|
"btn-destructive",
|
|
}[variant],
|
|
{
|
|
sm: "h-9 px-3 text-sm",
|
|
md: "h-10 px-4 py-2",
|
|
lg: "h-11 px-8",
|
|
icon: "h-10 w-10",
|
|
}[size],
|
|
className
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
);
|
|
Button.displayName = "Button";
|
|
|
|
export { Button };
|