Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
350 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module Primer
module OpenProject
module Forms
# :nodoc:
class SegmentedControl < Primer::Forms::BaseComponent
prepend WrappedInput
delegate :builder, :form, to: :@input
def initialize(input:)
super()
@input = input
end
end
end
end
end