@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 428 B
JavaScript
export class SvgTreeNavigateDown extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M16 11l-5 5-5-5h3V4H0V0h13v11z"/></svg>`;
}
}
customElements.define('svg-tree-navigate-down', SvgTreeNavigateDown);
export default SvgTreeNavigateDown;