@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 572 B
JavaScript
export class SvgWindowFullScreen 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.3-1.7-1.6 3.3-3.3L10 0zM3.8 2.2l3.3 3.3-1.6 1.7-3.3-3.4L0 6V0h6zm10 10L16 10v6h-6l2.2-2.2-3.3-3.3 1.7-1.7zm-6.6-1.7l-3.3 3.3L6 16H0v-6l2.2 2.2 3.3-3.3z"/></svg>`;
}
}
customElements.define('svg-window-full-screen', SvgWindowFullScreen);
export default SvgWindowFullScreen;