@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 822 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 IconFunctions_Rounded = class IconFunctions_Rounded extends LitElement {
render() {
return svgTag('<path d="M16.5 4H7.56C6.7 4 6 4.7 6 5.56c0 .28.12.55.32.74L12.5 12l-6.18 5.7c-.2.19-.32.46-.32.74C6 19.3 6.7 20 7.56 20h8.94c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H11l3.59-3.59c.78-.78.78-2.05 0-2.83L11 7h5.5c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4z"/>');
}
};
IconFunctions_Rounded.styles = style;
IconFunctions_Rounded = __decorate([
customElement('mdui-icon-functions--rounded')
], IconFunctions_Rounded);
export { IconFunctions_Rounded };