@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 811 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 IconRecommend_Rounded = class IconRecommend_Rounded extends LitElement {
render() {
return svgTag('<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 9.8c.02.17-.02.35-.1.5l-2.1 4.9c-.22.51-.74.83-1.3.8H9c-1.1 0-2-.9-2-2v-5c-.02-.38.13-.74.4-1L12 5l.69.69c.18.19.29.44.3.7v.2L12.41 10H17c.55 0 1 .45 1 1v.8z"/>');
}
};
IconRecommend_Rounded.styles = style;
IconRecommend_Rounded = __decorate([
customElement('mdui-icon-recommend--rounded')
], IconRecommend_Rounded);
export { IconRecommend_Rounded };