@coderundebug/ui-web
Version:
A collection of UI web components that can be used in any web project.
2 lines • 879 B
JavaScript
/* By Stephen Paul Hassall (web: https://coderundebug.com) */
import{UiIcon as o}from"./ui-icon.js";export class UiIconCircleInfo 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 A 1 1 0 0 1 8 5 A 1 1 0 0 1 7 4 A 1 1 0 0 1 8 3 z M 8 6 A 1 1 0 0 1 9 7 L 9 12 A 1 1 0 0 1 8 13 A 1 1 0 0 1 7 12 L 7 7 A 1 1 0 0 1 8 6 z"></path><path style=" fill: none; stroke: var(--ui-icon-secondary-color, transparent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;" d="m 8,7 v 5"></path><circle style=" fill: var(--ui-icon-secondary-color, transparent); stroke: none;" cx="8" cy="4" r="1"></circle></svg>')}}customElements.whenDefined("ui-icon").then((()=>{customElements.define("ui-icon-circle-info",UiIconCircleInfo)}));