@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 412 B
JavaScript
export class SvgChevronUp 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="M16 11.3l-1.4 1.4L8 6.1l-6.6 6.6L0 11.3l8-8"/></svg>`;
}
}
customElements.define('svg-chevron-up', SvgChevronUp);
export default SvgChevronUp;