@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 864 B
JavaScript
import { __decorate } from "tslib";
import { LitElement } from 'lit';
import { customElement } from 'lit/decorators/custom-element.js';
import { style } from '@mdui/shared/icons/shared/style.js';
import { svgTag } from '@mdui/shared/icons/shared/svg-tag.js';
let IconIcecream_Rounded = class IconIcecream_Rounded extends LitElement {
render() {
return svgTag('<path d="M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24A4.014 4.014 0 0 0 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02l3.83 7.31c.38.72 1.41.71 1.78-.01l3.73-7.31c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21a6.468 6.468 0 0 0 5.4-.02l-2.67 5.23z"/>');
}
};
IconIcecream_Rounded.styles = style;
IconIcecream_Rounded = __decorate([
customElement('mdui-icon-icecream--rounded')
], IconIcecream_Rounded);
export { IconIcecream_Rounded };