@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 723 B
JavaScript
export class SvgFolderBrowse 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="M10.332 12H1a1.075 1.075 0 01-1-1V1a1.075 1.075 0 011-1h4a1.075 1.075 0 011 1v1h7a1.075 1.075 0 011 1v5.726l-1.448-1.45a1.288 1.288 0 00-.918-.382 1.303 1.303 0 00-1.302 1.3zm4.117 1.1l1.364-.554a.3.3 0 00.1-.49l-4.069-4.074a.3.3 0 00-.512.212v5.723a.3.3 0 00.412.279l1.502-.61.988 2.295a.197.197 0 00.258.103l.83-.358a.197.197 0 00.104-.258z"/></svg>`;
}
}
customElements.define('svg-folder-browse', SvgFolderBrowse);
export default SvgFolderBrowse;