UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 733 B
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 IconMoreHoriz_Rounded = class IconMoreHoriz_Rounded extends LitElement { render() { return svgTag('<path d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/>'); } }; IconMoreHoriz_Rounded.styles = style; IconMoreHoriz_Rounded = __decorate([ customElement('mdui-icon-more-horiz--rounded') ], IconMoreHoriz_Rounded); export { IconMoreHoriz_Rounded };