@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 690 B
JavaScript
export class SvgScreenshare 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="M.5 13a.5.5 0 11-.5.5.5.5 0 01.5-.5zm6.5.5A6.508 6.508 0 00.5 7a.5.5 0 000 1A5.507 5.507 0 016 13.5a.5.5 0 001 0zm-2 0A4.505 4.505 0 00.5 9a.5.5 0 000 1A3.504 3.504 0 014 13.5a.5.5 0 001 0zm-2 0A2.503 2.503 0 00.5 11a.5.5 0 000 1A1.502 1.502 0 012 13.5a.5.5 0 001 0zm12-.5V3H1v3H0V2h16v12H8v-1z" fill-rule="evenodd"/></svg>`;
}
}
customElements.define('svg-screenshare', SvgScreenshare);
export default SvgScreenshare;