UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 566 B
export class SvgSavedView 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="M15 0H1a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1Zm0 11-4 4H5l-4-4V5l4-4h6l4 4v6Zm-13-.5 2.5-3 2.5 3H2Zm5.768-.64.534.64H14l-4.5-6-2.936 3.915L7.768 9.86ZM2 11h12l-1 1H3l-1-1Z"/></svg>`; } } customElements.define('svg-saved-view', SvgSavedView); export default SvgSavedView;