blob: 09ea7ebeab7b0fd2afb9a4ef38ad155a676f9de5 [file] [log] [blame]
// This is a generated file!
import { define } from '../../define';
const iconSkTemplate = document.createElement('template');
iconSkTemplate.innerHTML = '<svg class="icon-sk-svg" xmlns="http://www.w3.org/2000/svg" width=24 height=24 viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z"/></svg>';
define('folder-shared-icon-sk', class extends HTMLElement {
connectedCallback() {
const icon = iconSkTemplate.content.cloneNode(true);
while (this.firstChild) {
this.removeChild(this.firstChild);
}
this.appendChild(icon);
}
});