UNPKG

@itwin/itwinui-icons-elements

Version:

Exports svgs from @itwin/itwinui-icons as custom elements

8 lines 474 B
export class SvgWindowZoomIn 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="M9 7V1.1l2.1 2.2L14.3 0 16 1.7l-3.3 3.2L14.9 7zM0 14.4l3.3-3.3L1.1 9H7v5.9l-2.1-2.1-3.2 3.3z"/></svg>`; } } customElements.define('svg-window-zoom-in', SvgWindowZoomIn); export default SvgWindowZoomIn;