Module: GovukDesignSystem::TagHelper

Defined in:
app/helpers/govuk_design_system/tag_helper.rb

Instance Method Summary collapse

Instance Method Details

#govukTag(text: nil, html: nil, classes: "", attributes: {}) ⇒ Object



3
4
5
6
# File 'app/helpers/govuk_design_system/tag_helper.rb', line 3

def govukTag(text: nil, html: nil, classes: "", attributes: {})
  attributes["class"] = class_names("govuk-tag", classes)
  ("strong", (html || text), attributes)
end