@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 770 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 IconDateRange_Outlined = class IconDateRange_Outlined extends LitElement {
render() {
return svgTag('<path d="M7 11h2v2H7v-2zm14-5v14c0 1.1-.9 2-2 2H5a2 2 0 0 1-2-2l.01-14c0-1.1.88-2 1.99-2h1V2h2v2h8V2h2v2h1c1.1 0 2 .9 2 2zM5 8h14V6H5v2zm14 12V10H5v10h14zm-4-7h2v-2h-2v2zm-4 0h2v-2h-2v2z"/>');
}
};
IconDateRange_Outlined.styles = style;
IconDateRange_Outlined = __decorate([
customElement('mdui-icon-date-range--outlined')
], IconDateRange_Outlined);
export { IconDateRange_Outlined };