@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 919 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 IconBackspace_Rounded = class IconBackspace_Rounded extends LitElement {
render() {
return svgTag('<path d="M22 3H7c-.69 0-1.23.35-1.59.88L.37 11.45c-.22.34-.22.77 0 1.11l5.04 7.56c.36.52.9.88 1.59.88h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3.7 13.3a.996.996 0 0 1-1.41 0L14 13.41l-2.89 2.89a.996.996 0 1 1-1.41-1.41L12.59 12 9.7 9.11a.996.996 0 1 1 1.41-1.41L14 10.59l2.89-2.89a.996.996 0 1 1 1.41 1.41L15.41 12l2.89 2.89c.38.38.38 1.02 0 1.41z"/>');
}
};
IconBackspace_Rounded.styles = style;
IconBackspace_Rounded = __decorate([
customElement('mdui-icon-backspace--rounded')
], IconBackspace_Rounded);
export { IconBackspace_Rounded };