@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 486 B
JavaScript
export class SvgTableOfContents 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="M3 5H1V3h2zm12-2H5v2h10zM5 9H3V7h2zm10-2H7v2h8zM5 13H3v-2h2zm10-2H7v2h8z" fill-rule="evenodd"/></svg>`;
}
}
customElements.define('svg-table-of-contents', SvgTableOfContents);
export default SvgTableOfContents;