996c0107c9
* Updated flowbite to 4.x * Start revamping styles * Remove unused GraphQL code * Make some templates more robuts
9 lines
415 B
HTML
9 lines
415 B
HTML
<div class="inline-flex rounded-md shadow-xs" role="group">
|
|
{% if slot %}{{ slot }}{% endif %}
|
|
{% for button in buttons %}
|
|
{% if button.slot %}
|
|
<c-button-group-button-sm :href=button.href :slot=button.slot :color=button.color :hover=button.hover :title=button.title :hx_get=button.hx_get :hx_target=button.hx_target :hx_swap=button.hx_swap />
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|