@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 420 B
JavaScript
export class SvgColumnManager 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="M1 0h2v16H1M7 0h2v16H7m6-16h2v16h-2"/></svg>`;
}
}
customElements.define('svg-column-manager', SvgColumnManager);
export default SvgColumnManager;