backend-server-v2/web/templates/components/collapse.html

14 lines
759 B
HTML

{{define "flowbite_collapse"}}
<button data-collapse-toggle="collapseExample" type="button" class="flex w-full items-center justify-between rounded-lg bg-gray-100 px-5 py-2.5 text-left text-sm font-medium text-gray-500 hover:bg-gray-200" aria-expanded="false" aria-controls="collapseExample">
<span>Toggle collapse</span>
<svg data-accordion-icon class="h-3 w-3 shrink-0" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5 5 1 1 5"/>
</svg>
</button>
<div id="collapseExample" class="hidden">
<div class="rounded-b-lg border border-gray-200 p-5">
<p class="text-sm text-gray-500">Collapsed content.</p>
</div>
</div>
{{end}}