@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 494 B
JavaScript
export class SvgFolderAdd 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="M14 10h1V4a1 1 0 00-1-1H7V2a1 1 0 00-1-1H2a1 1 0 00-1 1v10a1 1 0 001 1h5v-3h3V7h4z"/><path d="M11 8v3H8v2h3v3h2v-3h3v-2h-3V8z"/></svg>`;
}
}
customElements.define('svg-folder-add', SvgFolderAdd);
export default SvgFolderAdd;