import { html, LitElement } from "lit"; import iconStyles from "../styles/icon.js"; export const tagName = "link-icon"; export class LinkIcon extends LitElement { static styles = [iconStyles]; render() { return html` `; } }