@coderundebug/ui-web
Version:
A collection of UI web components that can be used in any web project.
2 lines • 741 B
JavaScript
/* By Stephen Paul Hassall (web: https://coderundebug.com) */
import{UiIcon as t}from"./ui-icon.js";export class UiIconIndentRight extends t{constructor(){super(' <svg viewBox="0 0 16 16" style=" fill: none; stroke-width: 2; stroke-linecap: round;"><path style="stroke: var(--ui-c1);" d="M 2,2 H 14"></path><path style="stroke: var(--ui-c1);" d="m 8,6 h 6"></path><path style="stroke: var(--ui-c1);" d="m 8,10 h 6"></path><path style="stroke: var(--ui-c1);" d="M 2,14 H 14"></path><path style=" stroke: var(--ui-c2); stroke-width: 1; stroke-linejoin: round; fill: var(--ui-c2);" d="m 1.5,5.5 3,2.5 -3,2.5 z"></path></svg>')}}customElements.whenDefined("ui-icon").then((()=>{customElements.define("ui-icon-indent-right",UiIconIndentRight)}));