@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 908 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_Rounded = class IconFlightLand_Rounded extends LitElement {
render() {
return svgTag('<path d="M20.5 19h-17c-.55 0-1 .45-1 1s.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1zM3.51 11.61l15.83 4.24c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.58-8.45a1.08 1.08 0 0 0-.75-.73c-.68-.18-1.35.33-1.35 1.04v6.88L5.15 8.95 4.4 7.09a.991.991 0 0 0-.67-.59l-.33-.09a.495.495 0 0 0-.63.48v3.75c0 .46.3.85.74.97z"/>');
}
};
IconFlightLand_Rounded.styles = style;
IconFlightLand_Rounded = __decorate([
customElement('mdui-icon-flight-land--rounded')
], IconFlightLand_Rounded);
export { IconFlightLand_Rounded };