import { AuthButton } from './AuthButton'; interface OAuthButtonProps { provider: 'google' | 'github'; onClick: () => void; } export function OAuthButton({ provider, onClick }: OAuthButtonProps) { const labels = { google: 'Continuer avec Google', github: 'Continuer avec GitHub', }; const ariaLabels = { google: 'Se connecter avec Google', github: 'Se connecter avec GitHub', }; return ( {labels[provider]} ); }