@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 643 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 IconReadMore_Outlined = class IconReadMore_Outlined extends LitElement {
render() {
return svgTag('<path d="M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z"/>');
}
};
IconReadMore_Outlined.styles = style;
IconReadMore_Outlined = __decorate([
customElement('mdui-icon-read-more--outlined')
], IconReadMore_Outlined);
export { IconReadMore_Outlined };