@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 IconFlightTakeoff = class IconFlightTakeoff extends LitElement {
render() {
return svgTag('<path d="M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49s7.12-1.9 16.57-4.43c.81-.23 1.28-1.05 1.07-1.85z"/>');
}
};
IconFlightTakeoff.styles = style;
IconFlightTakeoff = __decorate([
customElement('mdui-icon-flight-takeoff')
], IconFlightTakeoff);
export { IconFlightTakeoff };