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 + 20, height: @max_height, translate: {0, 0} do %>
<%= for {_, key} = item <- @items do %>
<%= component FloUI.Dropdown.Item,
item,
id: key,
selected: @selected == key,
width: @width,
height: 50
%>
<% end %>
<% end %>