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