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