import { LitElement, css, html } from "lit" import "iconify-icon"; export default class Element extends LitElement { static override styles = css` :host { display: inline-flex; height: auto; } ` static override properties = { icon: { type: String }, size: { type: String }, } icon: string = "" size: string = "" override render() { return html` ` } } if (typeof customElements !== "undefined" && !customElements.get("doc-icon")) { customElements.define("doc-icon", Element) }