DFE-Digital/govuk-components

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

Summary

Maintainability
A
0 mins
Test Coverage
module Examples
  module StartButtonHelpers
    def start_button_normal
      <<~START_BUTTON
        = govuk_start_button(text: "Start now", href: "#")
      START_BUTTON
    end

    def start_button_as_button
      <<~START_BUTTON
        = govuk_start_button(text: "Start now", href: "#", as_button: true)
      START_BUTTON
    end
  end
end