"use client"; import { type ButtonHTMLAttributes } from "react"; interface ButtonProps extends ButtonHTMLAttributes { variant?: "primary" | "secondary" | "danger" | "ghost"; size?: "sm" | "md" | "lg"; loading?: boolean; } export function Button({ variant = "primary", size = "md", loading, children, className = "", disabled, ...props }: ButtonProps) { const base = "inline-flex items-center justify-center font-medium rounded-lg transition-colors focus:outline-none focus:ring-2 focus:ring-offset-2 disabled:opacity-50 disabled:cursor-not-allowed"; const variants = { primary: "bg-blue-600 text-white hover:bg-blue-700 focus:ring-blue-500", secondary: "bg-gray-100 text-gray-700 hover:bg-gray-200 focus:ring-gray-400", danger: "bg-red-600 text-white hover:bg-red-700 focus:ring-red-500", ghost: "text-gray-600 hover:bg-gray-100 focus:ring-gray-400", }; const sizes = { sm: "px-3 py-1.5 text-sm", md: "px-4 py-2 text-sm", lg: "px-6 py-3 text-base", }; return ( ); }