class Playbook::KitBase

def combined_html_options

def combined_html_options
  default_html_options.merge(html_options.deep_merge(data_attributes))
end

def data_attributes

def data_attributes
  {
    data: data,
    aria: aria,
  }.transform_keys { |key| key.to_s.gsub("_", "-") }
end

def default_html_options

def default_html_options
  {}
end

def object

def object
  self
end