@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 420 B
JavaScript
export class SvgFind 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="M9 9v4h6l-1-8h-2V2h1V0H9v3H7V0H3v2h1v3H2l-1 8h6V9zM0 14h7v2H0M9 14h7v2H9"/></svg>`;
}
}
customElements.define('svg-find', SvgFind);
export default SvgFind;