@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 805 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 IconBrightness_2_Rounded = class IconBrightness_2_Rounded extends LitElement {
render() {
return svgTag('<path d="M12.43 2.3a9.917 9.917 0 0 0-6.63.64c-.35.16-.41.64-.1.86C8.3 5.6 10 8.6 10 12c0 3.4-1.7 6.4-4.3 8.2-.32.22-.26.7.09.86 1.28.6 2.71.94 4.21.94 6.05 0 10.85-5.38 9.87-11.6-.61-3.92-3.59-7.16-7.44-8.1z"/>');
}
};
IconBrightness_2_Rounded.styles = style;
IconBrightness_2_Rounded = __decorate([
customElement('mdui-icon-brightness-2--rounded')
], IconBrightness_2_Rounded);
export { IconBrightness_2_Rounded };