@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 820 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 IconGolfCourse_Rounded = class IconGolfCourse_Rounded extends LitElement {
render() {
return svgTag('<circle cx="19.5" cy="19.5" r="1.5"/><path d="M11 18.03V8.98l4.22-2.15c.73-.37.73-1.43-.01-1.79l-4.76-2.33C9.78 2.38 9 2.86 9 3.6V19c0 .55-.45 1-1 1s-1-.45-1-1v-.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97z"/>');
}
};
IconGolfCourse_Rounded.styles = style;
IconGolfCourse_Rounded = __decorate([
customElement('mdui-icon-golf-course--rounded')
], IconGolfCourse_Rounded);
export { IconGolfCourse_Rounded };