@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 745 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 IconAdjust_Rounded = class IconAdjust_Rounded extends LitElement {
render() {
return svgTag('<path d="M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z"/>');
}
};
IconAdjust_Rounded.styles = style;
IconAdjust_Rounded = __decorate([
customElement('mdui-icon-adjust--rounded')
], IconAdjust_Rounded);
export { IconAdjust_Rounded };