@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 595 B
JavaScript
export class SvgKey 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="M8.5 6.829l.333-.333L16 13.658v-1L9.03 5.693A4.582 4.582 0 004.583 0C2.052 0 0 2.05 0 4.58a4.582 4.582 0 005.828 4.408L7 10.16h1.833v1.666H10.5v1.665h1.833v1.832h2.334l.656.677.677-.677v-.999L8.5 6.829zm-5-1.832a1.5 1.5 0 11-.001-3 1.5 1.5 0 01.001 3z"/></svg>`;
}
}
customElements.define('svg-key', SvgKey);
export default SvgKey;