@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 923 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_5_Rounded = class IconBrightness_5_Rounded extends LitElement {
render() {
return svgTag('<path d="m20 15.31 2.6-2.6a.996.996 0 0 0 0-1.41L20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.996.996 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6a.996.996 0 0 0 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"/>');
}
};
IconBrightness_5_Rounded.styles = style;
IconBrightness_5_Rounded = __decorate([
customElement('mdui-icon-brightness-5--rounded')
], IconBrightness_5_Rounded);
export { IconBrightness_5_Rounded };