<?php
namespace JanusHercules\Shared\Presentation\Component\Header;
use JanusHercules\Shared\Presentation\Entity\NavigationItem;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\UX\LiveComponent\Attribute\LiveProp;
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
#[AsTwigComponent(
'NavigationListGroup',
'@janus_hercules.shared.presentation/header/navigation_list_group_twig_component.html.twig'
)]
class NavigationListGroupTwigComponent extends AbstractController
{
/** @var NavigationItem[] */
#[LiveProp]
public array $items;
#[LiveProp]
public bool $showDivider;
}