@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 748 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 IconBedtime_Rounded = class IconBedtime_Rounded extends LitElement {
render() {
return svgTag('<path d="M11.65 3.46c.27-.71-.36-1.45-1.12-1.34-5.52.8-9.47 6.07-8.34 11.88.78 4.02 4.09 7.21 8.14 7.87 3.74.61 7.16-.87 9.32-3.44.48-.57.19-1.48-.55-1.62-6.02-1.15-9.68-7.54-7.45-13.35z"/>');
}
};
IconBedtime_Rounded.styles = style;
IconBedtime_Rounded = __decorate([
customElement('mdui-icon-bedtime--rounded')
], IconBedtime_Rounded);
export { IconBedtime_Rounded };