@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 709 B
JavaScript
export class SvgFolderShortcut 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="M12 8a4 4 0 104 4 4 4 0 00-4-4zm2 4l-1.412-1.125c-1.822 1.239-1.647 1.875-1.647 1.875 0 1.922 2.588 2.25 2.588 2.25C11.84 15 10 14.207 10 12.375a2.609 2.609 0 011.412-2.438L10.235 9H14zm-6.9 1H2a1 1 0 01-1-1V2a1 1 0 011-1h4a1 1 0 011 1v1h7a1 1 0 011 1v4.023A4.978 4.978 0 007 12a5.021 5.021 0 00.1 1z" fill-rule="evenodd"/></svg>`;
}
}
customElements.define('svg-folder-shortcut', SvgFolderShortcut);
export default SvgFolderShortcut;