>
<%= icon_tag("user-smile-fill", class: "inline-block align-text-bottom shrink-0 w-6 h-6 rounded-[4.81rem] font-normal text-sm fill-yellow bg-black") %>
<%= @user_label %>
<% if (available_locales = Spree.i18n_available_locales).any? %>
-
<%= autosubmit_select_tag(
"switch_to_locale",
options_for_select(locale_options_for_select(available_locales), selected: I18n.locale),
icon: 'global-line',
) %>
<% end %>
-
<%= autosubmit_select_tag(
"switch_to_theme",
options_for_select(theme_options_for_select, session[:admin_light_theme]),
icon: 'sun-line',
) do %>
<%= hidden_field_tag(:system_theme, :light) %>
<% end %>
-
<%= autosubmit_select_tag(
"switch_to_theme",
options_for_select(theme_options_for_select, session[:admin_dark_theme]),
icon: 'moon-line',
) do %>
<%= hidden_field_tag(:system_theme, :dark) %>
<% end %>
-
<%= link_to @account_path, class: 'flex gap-2 items-center px-2' do %>
<%= icon_tag("user-3-line", class: "w-5 h-5 fill-current shrink") %>
<%= t('.account') %>
<% end %>
-
<%= button_to @logout_path, method: @logout_method, class: 'flex gap-2 items-center px-2' do %>
<%= icon_tag("logout-box-line", class: "w-5 h-5 fill-current shrink") %>
<%= t('.logout') %>
<% end %>