@coderundebug/ui-web
Version:
A collection of UI web components that can be used in any web project.
2 lines • 833 B
JavaScript
/* By Stephen Paul Hassall (web: https://coderundebug.com) */
import{UiIcon as o}from"./ui-icon.js";export class UiIconCirclePlus extends o{constructor(){super(' <svg viewBox="0 0 16 16"><path style="fill: var(--ui-c1); stroke: none;" d="M 8 0 A 8 8 0 0 0 0 8 A 8 8 0 0 0 8 16 A 8 8 0 0 0 16 8 A 8 8 0 0 0 8 0 z M 8 3 A 1 1 0 0 1 9 4 L 9 7 L 12 7 A 1 1 0 0 1 13 8 A 1 1 0 0 1 12 9 L 9 9 L 9 12 A 1 1 0 0 1 8 13 A 1 1 0 0 1 7 12 L 7 9 L 4 9 A 1 1 0 0 1 3 8 A 1 1 0 0 1 4 7 L 7 7 L 7 4 A 1 1 0 0 1 8 3 z"></path><g style=" fill: none; stroke: var(--ui-icon-secondary-color, transparent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;"><path d="m 8,4 v 8"></path><path d="m 4,8 h 8"></path></g></svg>')}}customElements.whenDefined("ui-icon").then((()=>{customElements.define("ui-icon-circle-plus",UiIconCirclePlus)}));