@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 482 B
JavaScript
export class SvgDocumentReference 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 0v3h3zm-1 4V0H2v16h12V4zm1.1 10.1H4.9V5.8H9v2.1h2.1zM9.6 7.3V5.8l1.6 1.6H9.6z"/></svg>`;
}
}
customElements.define('svg-document-reference', SvgDocumentReference);
export default SvgDocumentReference;