UNPKG

@coderundebug/ui-web

Version:

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

2 lines 939 B
/* By Stephen Paul Hassall (web: https://coderundebug.com) */ import{UiIcon as t}from"./ui-icon.js";export class UiIconZoomOut extends t{constructor(){super(' <svg viewBox="0 0 16 16" style=" fill: none; stroke-width: 2; stroke-linecap: round;"><g style="stroke-width: 1.5;"><path style="stroke: var(--ui-c1);" d="M 2,2 6,6"></path><path style="stroke: var(--ui-c2);" d="M 2,14 6,10"></path><path style="stroke: var(--ui-c2);" d="M 14,2 10,6"></path><path style="stroke: var(--ui-c1);" d="M 14,14 10,10"></path></g><g style="stroke-width: 2; stroke-linejoin: round;"><path style="stroke: var(--ui-c1);" d="M 5,1 H 1 v 4"></path><path style="stroke: var(--ui-c2);" d="m 1,11 v 4 h 4"></path><path style="stroke: var(--ui-c2);" d="M 15,5 V 1 h -4"></path><path style="stroke: var(--ui-c1);" d="m 11,15 h 4 v -4"></path></g></svg>')}}customElements.whenDefined("ui-icon").then((()=>{customElements.define("ui-icon-zoom-out",UiIconZoomOut)}));