@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 964 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 IconPercent_Rounded = class IconPercent_Rounded extends LitElement {
render() {
return svgTag('<path d="M7.5 4C5.57 4 4 5.57 4 7.5S5.57 11 7.5 11 11 9.43 11 7.5 9.43 4 7.5 4zm0 5C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm9 4c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.79-13.29c.39.39.39 1.02 0 1.41L6.12 19.29a.996.996 0 1 1-1.41-1.41L17.88 4.71a.996.996 0 0 1 1.41 0z"/>');
}
};
IconPercent_Rounded.styles = style;
IconPercent_Rounded = __decorate([
customElement('mdui-icon-percent--rounded')
], IconPercent_Rounded);
export { IconPercent_Rounded };