# 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