Class: Railsboot::ToastComponent
- Defined in:
- app/components/railsboot/toast_component.rb
Constant Summary
Constants inherited from Component
Component::COLORS, Component::DEFAULT_COLOR
Instance Method Summary collapse
-
#initialize(**html_attributes) ⇒ ToastComponent
constructor
A new instance of ToastComponent.
Constructor Details
#initialize(**html_attributes) ⇒ ToastComponent
Returns a new instance of ToastComponent.
5 6 7 8 9 10 11 12 |
# File 'app/components/railsboot/toast_component.rb', line 5 def initialize(**html_attributes) @html_attributes = html_attributes @html_attributes[:class] = class_names( "toast", html_attributes.delete(:class) ) end |