UNPKG

@coderundebug/ui-web

Version:

A collection of UI web components that can be used in any web project.

2 lines 680 B
/* By Stephen Paul Hassall (web: https://coderundebug.com) */ import{UiIcon as c}from"./ui-icon.js";export class UiIconShare extends c{constructor(){super(' <svg viewBox="0 0 16 16" style=" fill: none; stroke-width: 1; stroke-linecap: butt;"><path style="stroke: var(--ui-c2);" d="M 5,7 11,4"></path><path style="stroke: var(--ui-c2);" d="m 5,9 6,3"></path><circle style="stroke: var(--ui-c1);" cx="3" cy="8" r="2.5"></circle><circle style="stroke: var(--ui-c1);" cx="13" cy="3" r="2.5"></circle><circle style="stroke: var(--ui-c1);" cx="13" cy="13" r="2.5"></circle></svg>')}}customElements.whenDefined("ui-icon").then((()=>{customElements.define("ui-icon-share",UiIconShare)}));