@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 980 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 IconKeyboardDoubleArrowDown_Rounded = class IconKeyboardDoubleArrowDown_Rounded extends LitElement {
render() {
return svgTag('<path d="M17.29 5.71a.996.996 0 0 0-1.41 0L12 9.58 8.11 5.7A.996.996 0 1 0 6.7 7.11l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59a.984.984 0 0 0 0-1.4z"/><path d="M17.29 12.3a.996.996 0 0 0-1.41 0L12 16.17l-3.88-3.88a.996.996 0 1 0-1.41 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59a.993.993 0 0 0-.01-1.4z"/>');
}
};
IconKeyboardDoubleArrowDown_Rounded.styles = style;
IconKeyboardDoubleArrowDown_Rounded = __decorate([
customElement('mdui-icon-keyboard-double-arrow-down--rounded')
], IconKeyboardDoubleArrowDown_Rounded);
export { IconKeyboardDoubleArrowDown_Rounded };