@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 749 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 IconScience_Rounded = class IconScience_Rounded extends LitElement {
render() {
return svgTag('<path d="M20.54 17.73 15 11V5h1c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1h1v6l-5.54 6.73c-.32.39-.46.83-.46 1.27.01 1.03.82 2 2 2h14c1.19 0 2-.97 2-2 0-.44-.14-.88-.46-1.27z"/>');
}
};
IconScience_Rounded.styles = style;
IconScience_Rounded = __decorate([
customElement('mdui-icon-science--rounded')
], IconScience_Rounded);
export { IconScience_Rounded };