@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 826 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 IconThumbUp_Rounded = class IconThumbUp_Rounded extends LitElement {
render() {
return svgTag('<path d="M13.12 2.06 7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z"/>');
}
};
IconThumbUp_Rounded.styles = style;
IconThumbUp_Rounded = __decorate([
customElement('mdui-icon-thumb-up--rounded')
], IconThumbUp_Rounded);
export { IconThumbUp_Rounded };