EvoBal/app/components/flash_notice_component.html.erb
Jérémy Lecour df5645c0ae utilisation de heroicon
permet de ne pas copier/coller des tags SVG pour les icones de Heroicons
2021-03-07 18:39:46 +01:00

12 lines
382 B
Plaintext

<div class="rounded-md bg-green-50 p-4 mb-4">
<div class="flex">
<div class="flex-shrink-0">
<%= helpers.heroicon "information-circle", variant: :solid, options: { class: "h-5 w-5 text-green-400" } %>
</div>
<div class="ml-3 flex-1 md:flex md:justify-between">
<p class="text-sm text-green-700">
<%= content %>
</p>
</div>
</div>
</div>