UNPKG

@itwin/itwinui-icons-elements

Version:

Exports svgs from @itwin/itwinui-icons as custom elements

8 lines 660 B
export class SvgFolderRemove 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="M15 7.929V4a1 1 0 00-1-1H7V2a1 1 0 00-1-1H2a1 1 0 00-1 1v10a1 1 0 001 1h6.172l1-1L7.05 9.879 9.879 7.05 12 9.172l2.121-2.122z"/><path d="M14.12 8.465l-2.121 2.121-2.121-2.121-1.414 1.414L10.585 12l-2.121 2.121 1.414 1.414 2.121-2.121 2.121 2.121 1.414-1.414L13.413 12l2.121-2.121"/></svg>`; } } customElements.define('svg-folder-remove', SvgFolderRemove); export default SvgFolderRemove;