in grafana/external-link.js [23:39]
function ExternalLink(opts) {
opts = opts || {};
const defaults = {
title: "",
tooltip: "",
url: "",
...opts,
tags: [],
icon: "external link",
targetBlank: true,
type: "link",
includeVars: false,
keepTime: false,
};
this.state = defaults;
}