Alert
A callout to draw a user's attention.
<%= ui.alert do |alert| %>
<%= lucide_icon('terminal', class: 'size-4') %>
<%= alert.title do %>
Heads up!
<% end %>
<%= alert.description do %>
You can add components with Rails generators.
<% end %>
<% end %>
Installation
rails g lycan_ui:add alert
Usage
Danger
Pass in variant
to ui.alert
with a value of :danger
.
<%= ui.alert variant: :danger do |alert| %>
<%= lucide_icon('octagon-alert', class: 'size-4') %>
<%= alert.title do %>
Error
<% end %>
<%= alert.description do %>
Something went terribly wrong. Please try again later.
<% end %>
<% end %>