@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 896 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 IconCurrencyYen_Rounded = class IconCurrencyYen_Rounded extends LitElement {
render() {
return svgTag('<path d="M6.82 3c.34 0 .66.17.84.46L12 10.29l4.34-6.83c.18-.29.5-.46.84-.46.79 0 1.27.87.84 1.54L13.92 11H17c.55 0 1 .45 1 1s-.45 1-1 1h-4v2h4c.55 0 1 .45 1 1s-.45 1-1 1h-4v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H7c-.55 0-1-.45-1-1s.45-1 1-1h4v-2H7c-.55 0-1-.45-1-1s.45-1 1-1h3.08l-4.1-6.46A.998.998 0 0 1 6.82 3z"/>');
}
};
IconCurrencyYen_Rounded.styles = style;
IconCurrencyYen_Rounded = __decorate([
customElement('mdui-icon-currency-yen--rounded')
], IconCurrencyYen_Rounded);
export { IconCurrencyYen_Rounded };