@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 442 B
JavaScript
export class SvgCaretUp 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="M14.7 12.4H1.4a.634.634 0 01-.5-1l6.6-7.8a.668.668 0 011 0l6.6 7.8c.4.3.1 1-.4 1z"/></svg>`;
}
}
customElements.define('svg-caret-up', SvgCaretUp);
export default SvgCaretUp;