@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 933 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 IconFactCheck_TwoTone = class IconFactCheck_TwoTone extends LitElement {
render() {
return svgTag('<path d="M4 19h16V5H4v14zm9.41-8.25 1.41 1.42L17.99 9l1.42 1.42L14.82 15 12 12.16l1.41-1.41zM5 7h5v2H5V7zm0 4h5v2H5v-2zm0 4h5v2H5v-2z" opacity=".3"/><path d="M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H4V5h16v14z"/><path d="M19.41 10.42 17.99 9l-3.17 3.17-1.41-1.42L12 12.16 14.82 15zM5 7h5v2H5zm0 4h5v2H5zm0 4h5v2H5z"/>');
}
};
IconFactCheck_TwoTone.styles = style;
IconFactCheck_TwoTone = __decorate([
customElement('mdui-icon-fact-check--two-tone')
], IconFactCheck_TwoTone);
export { IconFactCheck_TwoTone };