@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 782 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 IconNoteAlt_Sharp = class IconNoteAlt_Sharp extends LitElement {
render() {
return svgTag('<path d="M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM9.1 17H7v-2.14l5.96-5.96 2.12 2.12L9.1 17zm8.1-8.09-1.41 1.41-2.13-2.12 1.41-1.41 2.13 2.12z"/>');
}
};
IconNoteAlt_Sharp.styles = style;
IconNoteAlt_Sharp = __decorate([
customElement('mdui-icon-note-alt--sharp')
], IconNoteAlt_Sharp);
export { IconNoteAlt_Sharp };