@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 441 B
JavaScript
export class SvgDuplicate 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="M12 16H0V4h2v10h10z"/><path d="M3 1v12h12V1zm10 7h-3v3H8V8H5V6h3V3h2v3h3z"/></svg>`;
}
}
customElements.define('svg-duplicate', SvgDuplicate);
export default SvgDuplicate;