Current section

Files

Jump to
flo_ui lib dropdown dropdown_items dropdown_items.eex
Raw

lib/dropdown/dropdown_items/dropdown_items.eex

<%= graph font_size: 20 %>
<%= layout width: @width, height: @height, translate: {0, 0} do %>
<%= for {_, key} = item <- @items do %>
<%= component FloUI.Dropdown.Item,
item,
id: key,
selected: @selected == key,
width: @width
%>
<% end %>
<% end %>