@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 974 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 IconLibraryAddCheck_Rounded = class IconLibraryAddCheck_Rounded extends LitElement {
render() {
return svgTag('<path d="M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.24 11.28L9.69 11.2c-.38-.39-.38-1.01 0-1.4a.996.996 0 0 1 1.41 0l1.36 1.37 4.42-4.46a.996.996 0 0 1 1.41 0c.38.39.38 1.01 0 1.4l-5.13 5.17c-.37.4-1.01.4-1.4 0zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1z"/>');
}
};
IconLibraryAddCheck_Rounded.styles = style;
IconLibraryAddCheck_Rounded = __decorate([
customElement('mdui-icon-library-add-check--rounded')
], IconLibraryAddCheck_Rounded);
export { IconLibraryAddCheck_Rounded };