@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 830 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 IconElevator_Outlined = class IconElevator_Outlined extends LitElement {
render() {
return svgTag('<path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15v-4h1v-2.5c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2V14h1v4h3zM8.5 8.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5zM18 11l-2.5-4-2.5 4h5zm-5 2 2.5 4 2.5-4h-5z"/>');
}
};
IconElevator_Outlined.styles = style;
IconElevator_Outlined = __decorate([
customElement('mdui-icon-elevator--outlined')
], IconElevator_Outlined);
export { IconElevator_Outlined };