2025-02-21 11:57:59 -05:00
|
|
|
<%# locals: (account:, size: "md", color: nil) %>
|
2024-10-18 14:37:42 -04:00
|
|
|
|
|
|
|
<% size_classes = {
|
|
|
|
"sm" => "w-6 h-6",
|
|
|
|
"md" => "w-9 h-9",
|
|
|
|
"lg" => "w-10 h-10",
|
|
|
|
"full" => "w-full h-full"
|
|
|
|
} %>
|
|
|
|
|
2025-02-06 08:57:24 -06:00
|
|
|
<% if account.plaid_account_id? && account.institution_domain.present? %>
|
2025-02-25 17:28:40 -05:00
|
|
|
<%= image_tag "https://logo.synthfinance.com/#{account.institution_domain}", class: "shrink-0 rounded-full #{size_classes[size]}" %>
|
2025-02-06 08:57:24 -06:00
|
|
|
<% elsif account.logo.attached? %>
|
2025-02-25 17:28:40 -05:00
|
|
|
<%= image_tag account.logo, class: "shrink-0 rounded-full #{size_classes[size]}" %>
|
2024-10-18 14:37:42 -04:00
|
|
|
<% else %>
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= render FilledIconComponent.new(variant: :text, hex_color: color || account.accountable.color, text: account.name, size: size, rounded: true) %>
|
2024-10-18 14:37:42 -04:00
|
|
|
<% end %>
|