@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 788 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 IconMore_Outlined = class IconMore_Outlined extends LitElement {
render() {
return svgTag('<path d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z"/><circle cx="9" cy="12" r="1.5"/><circle cx="14" cy="12" r="1.5"/><circle cx="19" cy="12" r="1.5"/>');
}
};
IconMore_Outlined.styles = style;
IconMore_Outlined = __decorate([
customElement('mdui-icon-more--outlined')
], IconMore_Outlined);
export { IconMore_Outlined };