UNPKG

@itwin/itwinui-icons-elements

Version:

Exports svgs from @itwin/itwinui-icons as custom elements

8 lines 603 B
export class SvgScreenshareStop 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="M6.854 13.146a.5.5 0 01-.695.72l-.012-.013L3.5 11.207.854 13.854a.5.5 0 01-.707-.707L2.793 10.5.146 7.854a.5.5 0 11.695-.72l.012.013L3.5 9.793l2.646-2.647a.5.5 0 01.707.707L4.207 10.5zM8 13v1h8V2H0v4h1V3h14v10z"/></svg>`; } } customElements.define('svg-screenshare-stop', SvgScreenshareStop); export default SvgScreenshareStop;