@coderundebug/ui-web
Version:
A collection of UI web components that can be used in any web project.
2 lines • 914 B
JavaScript
/* By Stephen Paul Hassall (web: https://coderundebug.com) */
import{UiIcon as e}from"./ui-icon.js";export class UiIconCircleCheck extends e{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 11.5 4.5 A 1 1 0 0 1 12.207031 4.7929688 A 1 1 0 0 1 12.207031 6.2070312 L 7.2070312 11.207031 A 1.0001 1.0001 0 0 1 5.7929688 11.207031 L 3.7929688 9.2070312 A 1 1 0 0 1 3.7929688 7.7929688 A 1 1 0 0 1 5.2070312 7.7929688 L 6.5 9.0859375 L 10.792969 4.7929688 A 1 1 0 0 1 11.5 4.5 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 4.5,8.5 2,2 5,-5"></path></g></svg>')}}customElements.whenDefined("ui-icon").then((()=>{customElements.define("ui-icon-circle-check",UiIconCircleCheck)}));