@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 755 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_Rounded = class IconMode_Rounded extends LitElement {
render() {
return svgTag('<path d="M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04a.996.996 0 0 0 0-1.41l-2.34-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/>');
}
};
IconMode_Rounded.styles = style;
IconMode_Rounded = __decorate([
customElement('mdui-icon-mode--rounded')
], IconMode_Rounded);
export { IconMode_Rounded };