@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 414 B
JavaScript
export class SvgSortUp extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M9 16V3.3L12.8 7 14 5.8 8 0 6.8 1.2 2 5.8 3.2 7 7 3.3V16z"/></svg>`;
}
}
customElements.define('svg-sort-up', SvgSortUp);
export default SvgSortUp;