@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 759 B
JavaScript
export class SvgIssueReport 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 1.6a6.496 6.496 0 016.5 6.2v.3A6.487 6.487 0 018 14.6a6.71 6.71 0 01-2.8-.6l-.6-.3a4.618 4.618 0 01-1.7.6 4.221 4.221 0 00.5-1.6l-.5-.7a6.372 6.372 0 011-9A6.773 6.773 0 018 1.6M8 .1a8.024 8.024 0 00-8 8 7.681 7.681 0 001.8 5 6.5 6.5 0 01-1.1 2.2.442.442 0 00.3.7 6.615 6.615 0 003.5-.8A8.525 8.525 0 008 16a8.024 8.024 0 008-8A7.938 7.938 0 008 .1zm.994 12h-2v-2h2zm0-3h-2v-5h2z"/></svg>`;
}
}
customElements.define('svg-issue-report', SvgIssueReport);
export default SvgIssueReport;