UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 1.13 kB
export class SvgBentleySystems 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="M4.09 9.491c1.051 0 6.231.341 6.333 1.505.164 1.866-3.538 2.357-5.82 2.38-.82 0-2.845-.27-2.845-1.236 0-.47.563-.965.897-1.28zm8.75-9.49H16v1.146A4.83 4.83 0 0012.84 0zM16 3.885V16H.005L0 14.524a12.567 12.567 0 004.448.814c4.417.164 8.88-1.264 8.802-4.4-.054-2.155-4.851-3.015-7.792-3.094l.212-.228c4.941.122 9.02-.587 10.33-3.73zM.005 10.542V0h8.849a17.695 17.695 0 00-4.27.86A17.664 17.664 0 001.52 2.115C.834 2.533.018 3.228.199 3.98c.174.725 2.238-.18 3.121-.437a52.186 52.186 0 017.15-1.414c2.974-.18 3.693.606 3.718 1.1-.061.737-1.308 2.133-7.103 2.828 2.129-2.178 2.308-2.47 2.488-2.85-2.564 0-3.749 1.482-5.415 2.897a6.678 6.678 0 00-3.113.88c-.349.282-.847.545-.548 1.037.215.355 1.132.188 1.445.208-.71.82-1.536 1.818-1.937 2.313z"/></svg>`; } } customElements.define('svg-bentley-systems', SvgBentleySystems); export default SvgBentleySystems;