class Avo::ResourceComponent

def render_back_button(control)

def render_back_button(control)
  return if back_path.blank? || is_a_related_resource?
  tippy = control.title ? :tooltip : nil
  a_link back_path,
    style: :text,
    title: control.title,
    data: {tippy: tippy},
    icon: "arrow-left" do
    control.label
  end
end