@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 781 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 IconLinearScale_Rounded = class IconLinearScale_Rounded extends LitElement {
render() {
return svgTag('<path d="M17 7c-2.41 0-4.43 1.72-4.9 4H6.79c-.39-.88-1.27-1.5-2.29-1.5a2.5 2.5 0 0 0 0 5c1.02 0 1.9-.62 2.29-1.5h5.31A5 5 0 1 0 17 7zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"/>');
}
};
IconLinearScale_Rounded.styles = style;
IconLinearScale_Rounded = __decorate([
customElement('mdui-icon-linear-scale--rounded')
], IconLinearScale_Rounded);
export { IconLinearScale_Rounded };