UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 728 B
export class SvgWindowArea 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="M6 0v1H4V0zM0 .004V2h1V1h1V0zM1 4H0v2h1zm0 4H0v2h1zm0 4H0v3h2v-1H1zm3 2v1h2v-1zm4 0v1h2v-1zm6 0h-2v1h3v-2h-1zm0-5v2h1V9zm1-4.47a4.558 4.558 0 01-4.52 4.6h-.08a4.527 4.527 0 01-2.6-.79l-3.7 3.67L3 10.92l3.7-3.67a4.869 4.869 0 01-.8-2.58A4.499 4.499 0 0110.25.01.756.756 0 0110.4 0 4.567 4.567 0 0115 4.53zm-1.4.035a3.1 3.1 0 10-3.1 3.1 3.1 3.1 0 003.1-3.1z"/></svg>`; } } customElements.define('svg-window-area', SvgWindowArea); export default SvgWindowArea;