ubicloud/views/components/icon_with_text.erb
Jeremy Evans 750ebdc055 Change from erb_formatter to herb/formatter
Currently, herb/formatter has at least 4 bugs the prevent us from
switching to it (https://github.com/marcoroth/herb/issues 476, 477,
478, and 479). This includes manual fixes for each issue.

herb/formatter also introduces a rubocop violation for the
Layout/AssignmentIndentation cop. This disables that cop.
2025-09-05 14:01:01 -07:00

11 lines
317 B
Text

<%# 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>