Module: ViewComponent::NotificationBarComponent

Included in:
UiHelper
Defined in:
app/helpers/view_component/notification_bar_component.rb

Instance Method Summary collapse

Instance Method Details

#notification_bar(text: nil, text_color: 'text-letter-color', bg_color: 'bg-white', icon_color: 'bg-letter-color') ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'app/helpers/view_component/notification_bar_component.rb', line 5

def notification_bar(
  text: nil,
  text_color: 'text-letter-color',
  bg_color: 'bg-white',
  icon_color: 'bg-letter-color'
)
  render(
    partial: 'view_components/notification_bar/notification_bar',
    locals: {
      text:,
      text_color:,
      icon_color:,
      bg_color:
    }
  )
end