@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 707 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 IconBookmarkAdd_Outlined = class IconBookmarkAdd_Outlined extends LitElement {
render() {
return svgTag('<path d="M17 11v6.97l-5-2.14-5 2.14V5h6V3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V11h-2zm4-4h-2v2h-2V7h-2V5h2V3h2v2h2v2z"/>');
}
};
IconBookmarkAdd_Outlined.styles = style;
IconBookmarkAdd_Outlined = __decorate([
customElement('mdui-icon-bookmark-add--outlined')
], IconBookmarkAdd_Outlined);
export { IconBookmarkAdd_Outlined };