@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 763 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 IconBookmarks_Outlined = class IconBookmarks_Outlined extends LitElement {
render() {
return svgTag('<path d="M15 7v12.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10m4-6H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z"/>');
}
};
IconBookmarks_Outlined.styles = style;
IconBookmarks_Outlined = __decorate([
customElement('mdui-icon-bookmarks--outlined')
], IconBookmarks_Outlined);
export { IconBookmarks_Outlined };