2025-12-03 21:56:50 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
|
|
|
|
|
|
interface AuthButtonProps
|
|
|
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
|
|
loading?: boolean;
|
|
|
|
|
variant?: 'primary' | 'secondary';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function AuthButton({
|
|
|
|
|
loading,
|
|
|
|
|
variant = 'primary',
|
|
|
|
|
className,
|
|
|
|
|
children,
|
|
|
|
|
disabled,
|
|
|
|
|
...props
|
|
|
|
|
}: AuthButtonProps) {
|
|
|
|
|
return (
|
|
|
|
|
<button
|
|
|
|
|
className={cn(
|
|
|
|
|
'w-full px-4 py-2 rounded-lg font-medium transition-colors focus:outline-none focus:ring-2 focus:ring-offset-2',
|
|
|
|
|
variant === 'primary'
|
2026-02-07 15:02:52 +00:00
|
|
|
? 'bg-primary text-primary-foreground hover:bg-primary focus:ring-primary'
|
|
|
|
|
: 'bg-muted text-foreground hover:bg-muted focus:ring-muted',
|
2025-12-03 21:56:50 +00:00
|
|
|
(disabled || loading) && 'opacity-50 cursor-not-allowed',
|
2025-12-13 02:34:34 +00:00
|
|
|
className,
|
2025-12-03 21:56:50 +00:00
|
|
|
)}
|
|
|
|
|
disabled={disabled || loading}
|
|
|
|
|
aria-busy={loading}
|
|
|
|
|
aria-disabled={disabled || loading ? 'true' : 'false'}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
{loading ? (
|
|
|
|
|
<>
|
|
|
|
|
<span className="sr-only">Chargement en cours</span>
|
|
|
|
|
<span aria-hidden="true">Chargement...</span>
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
|
|
|
|
children
|
|
|
|
|
)}
|
|
|
|
|
</button>
|
|
|
|
|
);
|
|
|
|
|
}
|