# frozen_string_literal: true module FormElements class FieldsetComponent < ViewComponent::Base def initialize(tag: "div", title:, description: nil) @tag = tag @title = title @descripton = description end end end