@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 763 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 IconMode_Outlined = class IconMode_Outlined extends LitElement {
render() {
return svgTag('<path d="m14.06 9.02.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83a.996.996 0 0 0 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z"/>');
}
};
IconMode_Outlined.styles = style;
IconMode_Outlined = __decorate([
customElement('mdui-icon-mode--outlined')
], IconMode_Outlined);
export { IconMode_Outlined };