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