@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 650 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 IconDoubleArrow_Sharp = class IconDoubleArrow_Sharp extends LitElement {
render() {
return svgTag('<path d="M15.5 5H11l5 7-5 7h4.5l5-7z"/><path d="M8.5 5H4l5 7-5 7h4.5l5-7z"/>');
}
};
IconDoubleArrow_Sharp.styles = style;
IconDoubleArrow_Sharp = __decorate([
customElement('mdui-icon-double-arrow--sharp')
], IconDoubleArrow_Sharp);
export { IconDoubleArrow_Sharp };