|
@ -22,7 +22,7 @@ const Button: React.FC<ButtonProps> = ({ |
|
|
...props |
|
|
...props |
|
|
}) => { |
|
|
}) => { |
|
|
const baseClasses = 'inline-flex items-center justify-center font-medium transition-colors duration-200 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2'; |
|
|
const baseClasses = 'inline-flex items-center justify-center font-medium transition-colors duration-200 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const variantClasses = { |
|
|
const variantClasses = { |
|
|
primary: 'bg-primary-500 text-white hover:bg-primary-600 focus:ring-primary-500', |
|
|
primary: 'bg-primary-500 text-white hover:bg-primary-600 focus:ring-primary-500', |
|
|
secondary: 'bg-secondary-500 text-white hover:bg-secondary-600 focus:ring-secondary-500', |
|
|
secondary: 'bg-secondary-500 text-white hover:bg-secondary-600 focus:ring-secondary-500', |
|
@ -30,16 +30,16 @@ const Button: React.FC<ButtonProps> = ({ |
|
|
ghost: 'bg-transparent hover:bg-gray-100 dark:hover:bg-gray-800 text-gray-700 dark:text-gray-200 focus:ring-primary-500', |
|
|
ghost: 'bg-transparent hover:bg-gray-100 dark:hover:bg-gray-800 text-gray-700 dark:text-gray-200 focus:ring-primary-500', |
|
|
danger: 'bg-red-600 text-white hover:bg-red-700 focus:ring-red-500', |
|
|
danger: 'bg-red-600 text-white hover:bg-red-700 focus:ring-red-500', |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const sizeClasses = { |
|
|
const sizeClasses = { |
|
|
sm: 'px-3 py-1.5 text-sm', |
|
|
sm: 'px-3 py-1.5 text-sm', |
|
|
md: 'px-4 py-2 text-base', |
|
|
md: 'px-4 py-2 text-base', |
|
|
lg: 'px-6 py-3 text-lg', |
|
|
lg: 'px-6 py-3 text-lg', |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const widthClass = fullWidth ? 'w-full' : ''; |
|
|
const widthClass = fullWidth ? 'w-full' : ''; |
|
|
const disabledClass = disabled || isLoading ? 'opacity-60 cursor-not-allowed' : ''; |
|
|
const disabledClass = disabled || isLoading ? 'opacity-60 cursor-not-allowed' : ''; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ( |
|
|
return ( |
|
|
<button |
|
|
<button |
|
|
className={`${baseClasses} ${variantClasses[variant]} ${sizeClasses[size]} ${widthClass} ${disabledClass} ${className}`} |
|
|
className={`${baseClasses} ${variantClasses[variant]} ${sizeClasses[size]} ${widthClass} ${disabledClass} ${className}`} |
|
@ -48,17 +48,25 @@ const Button: React.FC<ButtonProps> = ({ |
|
|
> |
|
|
> |
|
|
{isLoading && ( |
|
|
{isLoading && ( |
|
|
<svg className="animate-spin -ml-1 mr-2 h-4 w-4 text-current\" xmlns="http://www.w3.org/2000/svg\" fill="none\" viewBox="0 0 24 24"> |
|
|
<svg className="animate-spin -ml-1 mr-2 h-4 w-4 text-current\" 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> |
|
|
|
|
|
|
|
|
<circle |
|
|
|
|
|
className="opacity-25" |
|
|
|
|
|
cx="12" |
|
|
|
|
|
cy="12" |
|
|
|
|
|
r="10" |
|
|
|
|
|
stroke="currentColor" |
|
|
|
|
|
strokeWidth="4" |
|
|
|
|
|
/> |
|
|
|
|
|
|
|
|
<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> |
|
|
<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> |
|
|
</svg> |
|
|
)} |
|
|
)} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{!isLoading && icon && iconPosition === 'left' && ( |
|
|
{!isLoading && icon && iconPosition === 'left' && ( |
|
|
<span className="mr-2">{icon}</span> |
|
|
<span className="mr-2">{icon}</span> |
|
|
)} |
|
|
)} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{children} |
|
|
{children} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{!isLoading && icon && iconPosition === 'right' && ( |
|
|
{!isLoading && icon && iconPosition === 'right' && ( |
|
|
<span className="ml-2">{icon}</span> |
|
|
<span className="ml-2">{icon}</span> |
|
|
)} |
|
|
)} |
|
|