@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 740 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 IconFlightLand_Sharp = class IconFlightLand_Sharp extends LitElement {
render() {
return svgTag('<path d="M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z"/>');
}
};
IconFlightLand_Sharp.styles = style;
IconFlightLand_Sharp = __decorate([
customElement('mdui-icon-flight-land--sharp')
], IconFlightLand_Sharp);
export { IconFlightLand_Sharp };