@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 915 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 IconMobileFriendly_Rounded = class IconMobileFriendly_Rounded extends LitElement {
render() {
return svgTag('<path d="M19 1H9c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-1.92-1.92c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l2.47 2.47c.39.39 1.02.39 1.41 0l5.85-5.85c.35-.35.35-.92 0-1.27s-.92-.35-1.27 0l-5.27 5.3z"/>');
}
};
IconMobileFriendly_Rounded.styles = style;
IconMobileFriendly_Rounded = __decorate([
customElement('mdui-icon-mobile-friendly--rounded')
], IconMobileFriendly_Rounded);
export { IconMobileFriendly_Rounded };