UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 564 B
export class SvgSend 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="M15.003 0h-.005a.995.995 0 00-.512.14L.504 8.132A1 1 0 00.64 9.933l3.105 1.195L10.848 5.8a.25.25 0 01.339.365l-6.188 7.072V15a1 1 0 001.707.707l2.485-2.485 4.448 1.711a1 1 0 001.356-.856l.994-12.929A1 1 0 0015.003 0z"/></svg>`; } } customElements.define('svg-send', SvgSend); export default SvgSend;