@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 825 B
JavaScript
export class SvgFontBold 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="M2.064-.013h4.983a9.603 9.603 0 014.945.97 3.374 3.374 0 011.539 3.083 3.885 3.885 0 01-.674 2.355 2.69 2.69 0 01-1.79 1.106v.11a3.528 3.528 0 012.196 1.27 4.133 4.133 0 01.673 2.475 4.079 4.079 0 01-1.582 3.417A6.845 6.845 0 018.054 16h-5.99zM5.459 6.33H7.43a3.604 3.604 0 002-.427 1.593 1.593 0 00.618-1.413 1.414 1.414 0 00-.673-1.32 4.33 4.33 0 00-2.13-.4H5.458zm0 2.694v4.173h2.212a3.282 3.282 0 002.07-.536 1.981 1.981 0 00.669-1.643q0-1.994-2.848-1.994z"/></svg>`;
}
}
customElements.define('svg-font-bold', SvgFontBold);
export default SvgFontBold;