@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 462 B
JavaScript
export class SvgWindowAdd extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M7 12H1V4h11v3h1V0H0v13h7zm4-11h1v1h-1zM9 1h1v1H9z"/><path d="M11 8v3H8v2h3v3h2v-3h3v-2h-3V8z"/></svg>`;
}
}
customElements.define('svg-window-add', SvgWindowAdd);
export default SvgWindowAdd;