import React from 'react'; import { Button } from '@/components/ui/Button'; import { cn } from '@/utils/utils'; import type { EvolutionOption } from '@/data/evolutionOptions'; interface EvolutionOptionCardProps { option: EvolutionOption; isSubmitting: boolean; isDisabled: boolean; onSelect: (option: EvolutionOption) => void; } export const EvolutionOptionCard: React.FC = ({ option, isSubmitting, isDisabled, onSelect }) => { return (
{/* En-tête de la carte */}
{option.categoryLabel} {option.badgeText && ( {option.badgeText} )}
{/* Titre & Description */}

{option.title}

{option.description}

{/* Bouton d'action */}
); };