@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 895 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 IconHowToVote_Rounded = class IconHowToVote_Rounded extends LitElement {
render() {
return svgTag('<path d="m18 12.18-1.5 1.64 2 2.18h-13l2-2.18L6 12.18l-3 3.27V20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4.54l-3-3.28z"/><path d="M10.59 14.42c.78.79 2.05.8 2.84.01l4.98-4.98c.78-.78.78-2.05 0-2.83l-3.54-3.53c-.78-.78-2.05-.78-2.83 0L7.09 8.04a2 2 0 0 0-.01 2.82l3.51 3.56zm2.87-9.92 3.53 3.53-4.94 4.94-3.53-3.53 4.94-4.94z"/>');
}
};
IconHowToVote_Rounded.styles = style;
IconHowToVote_Rounded = __decorate([
customElement('mdui-icon-how-to-vote--rounded')
], IconHowToVote_Rounded);
export { IconHowToVote_Rounded };