@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 878 B
JavaScript
export class SvgSmileySadVeryHollow 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 6.25a1.464 1.464 0 01.044-.272l1.5-.75A1.32 1.32 0 016 6.25 1.146 1.146 0 015 7.5a1.146 1.146 0 01-1-1.25zm7 1.25a1.146 1.146 0 001-1.25 1.464 1.464 0 00-.044-.272l-1.5-.75A1.32 1.32 0 0010 6.25a1.146 1.146 0 001 1.25zm-3 1a4.944 4.944 0 00-4.754 3.344.5.5 0 00.95.312A3.95 3.95 0 018 9.5a3.95 3.95 0 013.805 2.656.5.5 0 00.474.344.485.485 0 00.157-.025.5.5 0 00.318-.631A4.944 4.944 0 008 8.5zm8-.5a8 8 0 11-8-8 8 8 0 018 8zm-1 0a7 7 0 10-7 7 7.008 7.008 0 007-7z"/></svg>`;
}
}
customElements.define('svg-smiley-sad-very-hollow', SvgSmileySadVeryHollow);
export default SvgSmileySadVeryHollow;