Method: Olivander::ApplicationHelper#flash_icon

Defined in:
app/helpers/olivander/application_helper.rb

#flash_icon(key) ⇒ Object



198
199
200
201
202
203
204
205
206
207
208
209
210
211
# File 'app/helpers/olivander/application_helper.rb', line 198

def flash_icon(key)
  case key
  when 'error'
    'fas fa-exclamation-circle'
  when 'notice'
    'fas fa-info-circle'
  when 'alert'
    'fas fa-info-circle'
  when 'success'
    'fas fa-check-circle'
  else
    'fas fa-question-circle'
  end
end