@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 786 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 IconCameraRear_Outlined = class IconCameraRear_Outlined extends LitElement {
render() {
return svgTag('<path d="M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z"/>');
}
};
IconCameraRear_Outlined.styles = style;
IconCameraRear_Outlined = __decorate([
customElement('mdui-icon-camera-rear--outlined')
], IconCameraRear_Outlined);
export { IconCameraRear_Outlined };