@coderundebug/ui-web
Version:
A collection of UI web components that can be used in any web project.
2 lines • 659 B
JavaScript
/* By Stephen Paul Hassall (web: https://coderundebug.com) */
import{UiIcon as t}from"./ui-icon.js";export class UiIconBarChart extends t{constructor(){super(' <svg viewBox="0 0 16 16" style=" fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin:round;"><path style="stroke: var(--ui-c2);" d="m 4.6,11.5 v -2"></path><path style="stroke: var(--ui-c1);" d="m 8.5,11.5 v -5"></path><path style="stroke: var(--ui-c2);" d="m 12.5,11.5 v -8"></path><path style="stroke: var(--ui-c1); stroke-width: 2;" d="M 1,1 1,15 H 15"></path></svg>')}}customElements.whenDefined("ui-icon").then((()=>{customElements.define("ui-icon-bar-chart",UiIconBarChart)}));