@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 844 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 IconCameraAlt_Outlined = class IconCameraAlt_Outlined extends LitElement {
render() {
return svgTag('<path d="M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"/>');
}
};
IconCameraAlt_Outlined.styles = style;
IconCameraAlt_Outlined = __decorate([
customElement('mdui-icon-camera-alt--outlined')
], IconCameraAlt_Outlined);
export { IconCameraAlt_Outlined };