@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 773 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_Sharp = class IconKeyboardDoubleArrowDown_Sharp extends LitElement {
render() {
return svgTag('<path d="M18 6.41 16.59 5 12 9.58 7.41 5 6 6.41l6 6z"/><path d="m18 13-1.41-1.41L12 16.17l-4.59-4.58L6 13l6 6z"/>');
}
};
IconKeyboardDoubleArrowDown_Sharp.styles = style;
IconKeyboardDoubleArrowDown_Sharp = __decorate([
customElement('mdui-icon-keyboard-double-arrow-down--sharp')
], IconKeyboardDoubleArrowDown_Sharp);
export { IconKeyboardDoubleArrowDown_Sharp };