@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 591 B
JavaScript
export class SvgFolderExport 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="M11 15a6.08 6.08 0 00-6-6V7l-5 3.5L5 14v-2c3-.1 4.4 1.5 6 3m5-12.21v7.42a.928.928 0 01-.93.93h-4.26A6.976 6.976 0 006 8.08v-3l-3 2.1V.93A.935.935 0 013.93 0h3.71a.928.928 0 01.93.93v.93h6.5a.928.928 0 01.93.93z"/></svg>`;
}
}
customElements.define('svg-folder-export', SvgFolderExport);
export default SvgFolderExport;