@coderundebug/ui-web
Version:
A collection of UI web components that can be used in any web project.
2 lines • 645 B
JavaScript
/* By Stephen Paul Hassall (web: https://coderundebug.com) */
import{UiIcon as c}from"./ui-icon.js";export class UiIconListBullet extends c{constructor(){super(' <svg viewBox="0 0 16 16"><g style=" fill: none; stroke-width: 2; stroke-linecap: round; stroke: var(--ui-c1);"><path d="m 7,2 h 8"></path><path d="m 7,8 h 8"></path><path d="m 7,14 h 8"></path></g><g style=" stroke: none; fill: var(--ui-c2);"><circle cx="2" cy="2" r="2"></circle><circle cx="2" cy="8" r="2"></circle><circle cx="2" cy="14" r="2"></circle></g></svg>')}}customElements.whenDefined("ui-icon").then((()=>{customElements.define("ui-icon-list-bullet",UiIconListBullet)}));