@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 398 B
JavaScript
export class SvgUpload 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="M2 5h4v7h4V5h4L8 0zm12 6v3H2v-3H0v5h16v-5z"/></svg>`;
}
}
customElements.define('svg-upload', SvgUpload);
export default SvgUpload;