<li
x-data="{ open: false }"
class="mt-4 first:mt-0 border border-grey-lighter rounded-lg"
>
<div
@click="open = ! open"
class="paragraph--M text-violet font-weight-medium p-5 cursor-pointer flex justify-between"
>
<span>{{ question.contentProperties.question }}</span>
<div class="bg-violet round shrink-0 grid place-items-center w-8 h-8">
<svg x-show="!open" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" />
</svg>
<svg x-show="open" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 12h14" />
</svg>
</div>
</div>
<div
x-cloak
class="p-5 pt-3 w-3/4 paragraph--M text-grey-darker cursor-default"
x-show="open"
>
{{ question.contentProperties.reponse }}
</div>
</li>