- NestJS backend with JWT auth, Prisma ORM, Swagger docs - Vite + React 19 frontend with TypeScript - Tailwind CSS v4 with custom dark theme design system - Auth module: Login, Register, Protected routes - Campaigns module: CRUD, Member management - Full Prisma schema for PF2e campaign management - Docker Compose for PostgreSQL Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
2.2 KiB
TypeScript
52 lines
2.2 KiB
TypeScript
import * as React from 'react';
|
|
import { cn } from '@/shared/lib/utils';
|
|
|
|
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
variant?: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link';
|
|
size?: 'default' | 'sm' | 'lg' | 'icon';
|
|
isLoading?: boolean;
|
|
}
|
|
|
|
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
|
({ className, variant = 'default', size = 'default', isLoading, disabled, children, ...props }, ref) => {
|
|
const baseStyles = 'inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-lg text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary-500 focus-visible:ring-offset-2 focus-visible:ring-offset-bg-primary disabled:pointer-events-none disabled:opacity-50';
|
|
|
|
const variants = {
|
|
default: 'bg-primary-500 text-white hover:bg-primary-600 active:bg-primary-700',
|
|
destructive: 'bg-error-500 text-white hover:bg-error-600 active:bg-error-600',
|
|
outline: 'border border-border bg-transparent hover:bg-bg-tertiary hover:border-border-hover',
|
|
secondary: 'bg-secondary-800 text-text-primary hover:bg-secondary-700',
|
|
ghost: 'hover:bg-bg-tertiary',
|
|
link: 'text-primary-500 underline-offset-4 hover:underline',
|
|
};
|
|
|
|
const sizes = {
|
|
default: 'h-11 px-4 py-2',
|
|
sm: 'h-9 px-3 text-xs',
|
|
lg: 'h-12 px-8',
|
|
icon: 'h-11 w-11',
|
|
};
|
|
|
|
return (
|
|
<button
|
|
className={cn(baseStyles, variants[variant], sizes[size], className)}
|
|
ref={ref}
|
|
disabled={disabled || isLoading}
|
|
{...props}
|
|
>
|
|
{isLoading ? (
|
|
<svg className="animate-spin h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
|
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
|
</svg>
|
|
) : null}
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|
|
);
|
|
|
|
Button.displayName = 'Button';
|
|
|
|
export { Button };
|