f1f1be21c7
Celebration micro-interactions: - SuccessToast: auto-dismissing pill toast (success/info/warning variants) - ConfettiBurst: pure CSS 20-particle confetti on project creation - Project wizard: confetti + toast on successful creation - Vacation approval/rejection: contextual toasts - Allocation status change: success toast - Button: active:scale-[0.97] press feedback on all variants Collapsible sidebar + responsive: - Desktop: toggle collapse (72px icons-only mode) with localStorage persistence - NavTooltip: hover labels on collapsed icons - Mobile: hamburger menu + slide-in overlay with backdrop - Auto-close sidebar on mobile navigation - Scroll-to-top on route change (smooth behavior) Hover polish + accessibility: - Table rows: animated left-border accent + hover-lift - Stat cards + widgets: hover elevation + border glow - Timeline blocks: scale(1.02) + shadow-md on hover - Smooth scroll globally with prefers-reduced-motion fallback - Filter chips: framer-motion scale+fade enter/exit - Dropdowns: scaleY origin-top reveal animation - Preferences modal: scale+fade entrance - Link underline: animated ::after width expansion on hover Co-Authored-By: claude-flow <ruv@ruv.net>
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { clsx } from "clsx";
|
|
import type { ButtonHTMLAttributes } from "react";
|
|
|
|
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
variant?: "primary" | "secondary" | "ghost" | "danger";
|
|
size?: "sm" | "md" | "lg";
|
|
}
|
|
|
|
const variantClasses = {
|
|
primary: "bg-brand-600 hover:bg-brand-700 text-white",
|
|
secondary: "bg-white hover:bg-gray-50 text-gray-700 border border-gray-300",
|
|
ghost: "text-gray-600 hover:bg-gray-100",
|
|
danger: "bg-red-600 hover:bg-red-700 text-white",
|
|
};
|
|
|
|
const sizeClasses = {
|
|
sm: "px-3 py-1.5 text-xs",
|
|
md: "px-4 py-2 text-sm",
|
|
lg: "px-6 py-3 text-base",
|
|
};
|
|
|
|
export function Button({
|
|
variant = "primary",
|
|
size = "md",
|
|
className,
|
|
children,
|
|
disabled,
|
|
...props
|
|
}: ButtonProps) {
|
|
return (
|
|
<button
|
|
className={clsx(
|
|
"inline-flex items-center justify-center font-medium rounded-lg transition-all duration-75",
|
|
"focus:outline-none focus:ring-2 focus:ring-brand-500 focus:ring-offset-2",
|
|
"active:scale-[0.97]",
|
|
"disabled:opacity-50 disabled:cursor-not-allowed",
|
|
variantClasses[variant],
|
|
sizeClasses[size],
|
|
className,
|
|
)}
|
|
disabled={disabled}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|