@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 764 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 IconDiscFull_Rounded = class IconDiscFull_Rounded extends LitElement {
render() {
return svgTag('<path d="M20 16h2v-2h-2v2zm0-8v3c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/>');
}
};
IconDiscFull_Rounded.styles = style;
IconDiscFull_Rounded = __decorate([
customElement('mdui-icon-disc-full--rounded')
], IconDiscFull_Rounded);
export { IconDiscFull_Rounded };