<?phpnamespace App\Twig\Components;use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;#[AsTwigComponent]final class Alert{ public string $type = 'info'; public ?string $titre = null; public function getIcone(): string { return match ($this->type) { 'danger' => 'fa-times-circle', 'warning' => 'fa-exclamation-circle', 'info' => 'fa-info-circle', 'success' => 'fa-check-circle', default => 'fa-info-circle', }; }}