UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 400 B
export class SvgExit 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="M11 2v4H4v4h7v4l5-6"/><path d="M5 14H2V2h3V0H0v16h5z"/></svg>`; } } customElements.define('svg-exit', SvgExit); export default SvgExit;