DFE-Digital/govuk-components

View on GitHub
guide/lib/examples/section_break_helpers.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Examples
  module SectionBreakHelpers
    def section_break_visible
      <<~SECTION_BREAK
        = govuk_section_break(visible: true)
      SECTION_BREAK
    end

    def section_break_visible_xl
      <<~SECTION_BREAK
        = govuk_section_break(visible:true, size: "xl")
      SECTION_BREAK
    end
  end
end