@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 913 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 IconDiscount_Rounded = class IconDiscount_Rounded extends LitElement {
render() {
return svgTag('<path d="M12.79 21 3 11.21v2c0 .53.21 1.04.59 1.41l7.79 7.79c.78.78 2.05.78 2.83 0l6.21-6.21c.78-.78.78-2.05 0-2.83L12.79 21z"/><path d="M11.38 17.41c.78.78 2.05.78 2.83 0l6.21-6.21c.78-.78.78-2.05 0-2.83L12.63.58A2.04 2.04 0 0 0 11.21 0H5C3.9 0 3 .9 3 2v6.21c0 .53.21 1.04.59 1.41l7.79 7.79zM7.25 3a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5z"/>');
}
};
IconDiscount_Rounded.styles = style;
IconDiscount_Rounded = __decorate([
customElement('mdui-icon-discount--rounded')
], IconDiscount_Rounded);
export { IconDiscount_Rounded };