@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 730 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 IconSpoke_Rounded = class IconSpoke_Rounded extends LitElement {
render() {
return svgTag('<path d="M16 7c0 2.21-1.79 4-4 4S8 9.21 8 7s1.79-4 4-4 4 1.79 4 4zm-9 6c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm10 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z"/>');
}
};
IconSpoke_Rounded.styles = style;
IconSpoke_Rounded = __decorate([
customElement('mdui-icon-spoke--rounded')
], IconSpoke_Rounded);
export { IconSpoke_Rounded };