@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 489 B
JavaScript
export class SvgWindowMinimize 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="M0 16v-4.3l1.6 1.5 2.3-2.3 1.2 1.2-2.3 2.3L4.3 16m8.7-6H6V3h7zM7 9h5V4H7zM0 0v10h1V1h14v14H6v1h10V0z"/></svg>`;
}
}
customElements.define('svg-window-minimize', SvgWindowMinimize);
export default SvgWindowMinimize;