17 lines
453 B
Ruby
17 lines
453 B
Ruby
# frozen_string_literal: true
|
|
|
|
module FormElements
|
|
class FieldsetComponent < ViewComponent::Base
|
|
def initialize(tag: "li", positioning: :vertical,
|
|
title:, description: nil,
|
|
field_name: nil, resettable: false)
|
|
@tag = tag
|
|
@positioning = positioning
|
|
@title = title
|
|
@descripton = description
|
|
@field_name = field_name
|
|
@resettable = resettable
|
|
end
|
|
end
|
|
end
|