UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 714 B
export class SvgHelpCircular 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.01 0a8 8 0 108 8 8 8 0 00-8-8zm.512 11.252a.777.777 0 11-1.555 0v-.304a.777.777 0 011.555 0zM8.44 9.32a.11.11 0 01-.1.12H7.33a.1.1 0 01-.11-.089.093.093 0 010-.021c0-1.89 1.57-2.118 1.57-3.1a1.339 1.339 0 00-.18-.7.67.67 0 00-.64-.35.69.69 0 00-.63.45 2.133 2.133 0 00-.11.83H6.01c0-3.52 4-3.135 4-.31 0 1.509-1.57 1.54-1.57 3.17z"/></svg>`; } } customElements.define('svg-help-circular', SvgHelpCircular); export default SvgHelpCircular;