mirror of
https://github.com/we-promise/sure.git
synced 2026-04-18 11:34:13 +00:00
19 lines
1.1 KiB
Plaintext
19 lines
1.1 KiB
Plaintext
<%# locals: (account:, size: "md", color: nil) %>
|
|
|
|
<% size_classes = {
|
|
"sm" => "w-6 h-6",
|
|
"md" => "w-9 h-9",
|
|
"lg" => "w-10 h-10",
|
|
"full" => "w-full h-full"
|
|
} %>
|
|
|
|
<% if account.linked? && account.institution_domain.present? && Setting.brand_fetch_client_id.present? %>
|
|
<%= image_tag "https://cdn.brandfetch.io/#{account.institution_domain}/icon/fallback/lettermark/w/40/h/40?c=#{Setting.brand_fetch_client_id}", class: "shrink-0 rounded-full #{size_classes[size]}" %>
|
|
<% elsif account.enable_banking_account_id? && (enable_banking_account = EnableBankingAccount.find_by(id: account.enable_banking_account_id)) && (enable_banking_item = EnableBankingItem.find_by(id: enable_banking_account.enable_banking_item_id)) %>
|
|
<%= image_tag "#{enable_banking_item.logo_url}", class: "shrink-0 rounded-full #{size_classes[size]} h-auto" %>
|
|
<% elsif account.logo.attached? %>
|
|
<%= image_tag account.logo, class: "shrink-0 rounded-full #{size_classes[size]}" %>
|
|
<% else %>
|
|
<%= render DS::FilledIcon.new(variant: :text, hex_color: color || account.accountable.color, text: account.name, size: size, rounded: true) %>
|
|
<% end %>
|