mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 12:04:08 +00:00
8 lines
461 B
Plaintext
8 lines
461 B
Plaintext
<%# locals: (merchant:) %>
|
|
<% name = merchant.name || "?" %>
|
|
<% background_color = "color-mix(in srgb, #{merchant.color} 5%, white)" %>
|
|
<% border_color = "color-mix(in srgb, #{merchant.color} 10%, white)" %>
|
|
<span data-merchant-avatar-target="avatar" class="w-8 h-8 flex items-center justify-center rounded-full" style="background-color: <%= background_color %>; border-color: <%= border_color %>; color: <%= merchant.color %>">
|
|
<%= name[0].upcase %>
|
|
</span>
|