@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 477 B
JavaScript
export class SvgWindowZoomOut extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M16 0v6l-2.2-2.2-3.3 3.4-1.7-1.7 3.4-3.3L10 0zM7.2 10.5l-3.4 3.3L6 16H0v-6l2.2 2.2 3.3-3.4z"/></svg>`;
}
}
customElements.define('svg-window-zoom-out', SvgWindowZoomOut);
export default SvgWindowZoomOut;