@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 916 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 IconCameraOutdoor_Rounded = class IconCameraOutdoor_Rounded extends LitElement {
render() {
return svgTag('<path d="M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l1.27.67c.33.18.73-.06.73-.44v-2.46c0-.38-.4-.62-.73-.44L18 14v-1zm-7.2-9.1-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H6v-9l6-4.5 6 4.5v1h2v-1c0-.63-.3-1.22-.8-1.6l-6-4.5a2.01 2.01 0 0 0-2.4 0z"/>');
}
};
IconCameraOutdoor_Rounded.styles = style;
IconCameraOutdoor_Rounded = __decorate([
customElement('mdui-icon-camera-outdoor--rounded')
], IconCameraOutdoor_Rounded);
export { IconCameraOutdoor_Rounded };