@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 927 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 IconSpellcheck_Rounded = class IconSpellcheck_Rounded extends LitElement {
render() {
return svgTag('<path d="M13.12 16c.69 0 1.15-.69.9-1.32L9.77 3.87a1.363 1.363 0 0 0-2.54 0L2.98 14.68c-.25.63.22 1.32.9 1.32.4 0 .76-.25.91-.63L5.67 13h5.64l.9 2.38c.15.37.51.62.91.62zm-6.69-5L8.5 5.48 10.57 11H6.43zm14.46 1.29-7.39 7.39-2.97-2.97a.996.996 0 1 0-1.41 1.41l3.68 3.68c.39.39 1.02.39 1.41 0l8.08-8.09a.996.996 0 0 0 0-1.41.993.993 0 0 0-1.4-.01z"/>');
}
};
IconSpellcheck_Rounded.styles = style;
IconSpellcheck_Rounded = __decorate([
customElement('mdui-icon-spellcheck--rounded')
], IconSpellcheck_Rounded);
export { IconSpellcheck_Rounded };