Files
ubicloud/views/components/icon_with_text.erb
2025-06-19 13:07:10 +03:00

11 lines
336 B
Plaintext

<%# locals: (icon:, text:, subtext:) %>
<div class="flex gap-3 items-center">
<div>
<%== part("components/icon", name: icon, classes: "text-orange-600 h-8 w-8") %>
</div>
<div>
<div class="font-bold text-gray-900"><%== text %></div>
<div class="text-gray-600"><%== subtext %></div>
</div>
</div>