@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 681 B
JavaScript
export class SvgCloudUpload 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="M16 7.02A3.057 3.057 0 0112.9 10h-1.063L9.379 6.433A1 1 0 008.563 6h-.007a1 1 0 00-.815.42L5.195 10H3.1A3.057 3.057 0 010 7.02a2.872 2.872 0 012.6-2.885v-.289a1.89 1.89 0 012-1.827 2.155 2.155 0 011.3.481A3.53 3.53 0 019.5 0a3.794 3.794 0 014 4.038v.289A2.617 2.617 0 0116 7.019zM8.556 7L5 12h2v4h3v-4h2z"/></svg>`;
}
}
customElements.define('svg-cloud-upload', SvgCloudUpload);
export default SvgCloudUpload;