${this.tag}
${this.title}
${this.description}
${this.companies && this.companies.length > 0
? html`
Used by:
${this._parsedCompanies?.map(
(company) => html`
`
)}
`
: ``}
`
}
}
if (typeof customElements !== "undefined" && !customElements.get("doc-hero")) {
customElements.define("doc-hero", Element)
}