UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 393 B
export class SvgAway 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="M13.445 12.832L7 8.535V1h2v6.465l5.555 3.703z"/></svg>`; } } customElements.define('svg-away', SvgAway); export default SvgAway;