Select
A styled wrapper around the native HTML select element.
<%= ui.select :favorite, :fruit, ['Apple', 'Banana', 'Blueberry', 'Grapes', 'Pineapple'], { prompt: 'Select a Fruit' } %>
Installation
rails g lycan_ui:add select
Usage
Usage in forms
To use directly with Rails forms, please see Installing form helpers
<%= lycan_ui_form_with do |form| %>
<%= form.select :fruit, ['Apple', 'Banana', 'Blueberry', 'Grapes', 'Pineapple'], { prompt: 'Select a Fruit' } %>
<% end %>