<%= render(RailsUi::Alert::Component.new(icon: :terminal)) do |c|
c.with_title { 'Heads up!' }
'You can add components to your app using the cli.'
end
%>
<%= render(RailsUi::Alert::Component.new(variant: :destructive, icon: :alert)) do |c|
c.with_title { 'Error' }
'Your session has expired. Please log in again.'
end
%>