Class: Railsboot::ToastComponent

Inherits:
Component
  • Object
show all
Defined in:
app/components/railsboot/toast_component.rb

Constant Summary

Constants inherited from Component

Component::COLORS, Component::DEFAULT_COLOR

Instance Method Summary collapse

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