@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 887 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 IconSportsGymnastics_Rounded = class IconSportsGymnastics_Rounded extends LitElement {
render() {
return svgTag('<path d="M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9 16c-.56 0-1.02-.44-1.05-1l-.45-9L8 11H2c-.55 0-1-.45-1-1s.45-1 1-1h5l6.26-4.47c.42-.3 1-.23 1.34.16.38.45.3 1.12-.18 1.46L11.14 8.5H14l7.09-4.09a.98.98 0 0 1 1.1 1.62L14.5 12l-.45 9c-.03.56-.49 1-1.05 1z"/>');
}
};
IconSportsGymnastics_Rounded.styles = style;
IconSportsGymnastics_Rounded = __decorate([
customElement('mdui-icon-sports-gymnastics--rounded')
], IconSportsGymnastics_Rounded);
export { IconSportsGymnastics_Rounded };