@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 811 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 IconBookmarkRemove_Rounded = class IconBookmarkRemove_Rounded extends LitElement {
render() {
return svgTag('<path d="M21 6c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1zm-2 4.9A5.002 5.002 0 0 1 14 3H7c-1.1 0-2 .9-2 2v14.48c0 .72.73 1.2 1.39.92L12 18l5.61 2.4c.66.28 1.39-.2 1.39-.92V10.9z"/>');
}
};
IconBookmarkRemove_Rounded.styles = style;
IconBookmarkRemove_Rounded = __decorate([
customElement('mdui-icon-bookmark-remove--rounded')
], IconBookmarkRemove_Rounded);
export { IconBookmarkRemove_Rounded };