@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 772 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 IconPostAdd_Outlined = class IconPostAdd_Outlined extends LitElement {
render() {
return svgTag('<path d="M17 19.22H5V7h7V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h-2v7.22z"/><path d="M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z"/>');
}
};
IconPostAdd_Outlined.styles = style;
IconPostAdd_Outlined = __decorate([
customElement('mdui-icon-post-add--outlined')
], IconPostAdd_Outlined);
export { IconPostAdd_Outlined };