@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 824 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_3_Outlined = class IconBrightness_3_Outlined extends LitElement {
render() {
return svgTag('<path d="M12.7 4.91A8 8 0 0 1 17 12a8 8 0 0 1-4.3 7.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z"/>');
}
};
IconBrightness_3_Outlined.styles = style;
IconBrightness_3_Outlined = __decorate([
customElement('mdui-icon-brightness-3--outlined')
], IconBrightness_3_Outlined);
export { IconBrightness_3_Outlined };