module Ariadne::ViewComponent::HTMLAttrs

def html_attribute_accessors

def html_attribute_accessors
  @html_attribute_accessors ||=
    if superclass.respond_to?(:html_attribute_accessors)
      superclass.html_attribute_accessors.deep_dup
    else
      {}
    end
end