@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 876 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 IconShower_Rounded = class IconShower_Rounded extends LitElement {
render() {
return svgTag('<circle cx="8" cy="17" r="1"/><circle cx="12" cy="17" r="1"/><circle cx="16" cy="17" r="1"/><path d="M13 5.08V4c0-.55-.45-1-1-1s-1 .45-1 1v1.08C7.61 5.57 5 8.47 5 12v1c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1c0-3.53-2.61-6.43-6-6.92z"/><circle cx="8" cy="20" r="1"/><circle cx="12" cy="20" r="1"/><circle cx="16" cy="20" r="1"/>');
}
};
IconShower_Rounded.styles = style;
IconShower_Rounded = __decorate([
customElement('mdui-icon-shower--rounded')
], IconShower_Rounded);
export { IconShower_Rounded };