@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 984 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 IconKeyboardDoubleArrowLeft_Rounded = class IconKeyboardDoubleArrowLeft_Rounded extends LitElement {
render() {
return svgTag('<path d="M18.29 17.29a.996.996 0 0 0 0-1.41L14.42 12l3.88-3.88a.996.996 0 1 0-1.41-1.41L12.3 11.3a.996.996 0 0 0 0 1.41l4.59 4.59c.38.38 1.01.38 1.4-.01z"/><path d="M11.7 17.29a.996.996 0 0 0 0-1.41L7.83 12l3.88-3.88a.996.996 0 1 0-1.41-1.41L5.71 11.3a.996.996 0 0 0 0 1.41l4.59 4.59c.38.38 1.01.38 1.4-.01z"/>');
}
};
IconKeyboardDoubleArrowLeft_Rounded.styles = style;
IconKeyboardDoubleArrowLeft_Rounded = __decorate([
customElement('mdui-icon-keyboard-double-arrow-left--rounded')
], IconKeyboardDoubleArrowLeft_Rounded);
export { IconKeyboardDoubleArrowLeft_Rounded };