| // 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"><circle cx="12" cy="19" r="2"/><path d="M10 3h4v12h-4z"/></svg>'; |
| |
| define('priority-high-icon-sk', class extends HTMLElement { |
| connectedCallback() { |
| const icon = iconSkTemplate.content.cloneNode(true); |
| while (this.firstChild) { |
| this.removeChild(this.firstChild); |
| } |
| this.appendChild(icon); |
| } |
| }); |