@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 818 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 IconRequestPage_Outlined = class IconRequestPage_Outlined extends LitElement {
render() {
return svgTag('<path d="M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm1 9h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z"/>');
}
};
IconRequestPage_Outlined.styles = style;
IconRequestPage_Outlined = __decorate([
customElement('mdui-icon-request-page--outlined')
], IconRequestPage_Outlined);
export { IconRequestPage_Outlined };