@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 709 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 IconSend_Rounded = class IconSend_Rounded extends LitElement {
render() {
return svgTag('<path d="m3.4 20.4 17.45-7.48a1 1 0 0 0 0-1.84L3.4 3.6a.993.993 0 0 0-1.39.91L2 9.12c0 .5.37.93.87.99L17 12 2.87 13.88c-.5.07-.87.5-.87 1l.01 4.61c0 .71.73 1.2 1.39.91z"/>');
}
};
IconSend_Rounded.styles = style;
IconSend_Rounded = __decorate([
customElement('mdui-icon-send--rounded')
], IconSend_Rounded);
export { IconSend_Rounded };