@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 796 B
JavaScript
export class SvgSmileyHappyVeryHollow 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 13.5A4.775 4.775 0 013 9a.5.5 0 011 0 3.78 3.78 0 004 3.5A3.78 3.78 0 0012 9a.5.5 0 011 0 4.775 4.775 0 01-5 4.5zm2-7.25a1.146 1.146 0 001 1.25 1.146 1.146 0 001-1.25A1.146 1.146 0 0011 5a1.146 1.146 0 00-1 1.25zm-6 0A1.146 1.146 0 005 7.5a1.146 1.146 0 001-1.25A1.146 1.146 0 005 5a1.146 1.146 0 00-1 1.25zM8 1a7 7 0 107 7 7.008 7.008 0 00-7-7m0-1a8 8 0 11-8 8 8 8 0 018-8z"/></svg>`;
}
}
customElements.define('svg-smiley-happy-very-hollow', SvgSmileyHappyVeryHollow);
export default SvgSmileyHappyVeryHollow;