UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 623 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 IconSegment_Outlined = class IconSegment_Outlined extends LitElement { render() { return svgTag('<path d="M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z"/>'); } }; IconSegment_Outlined.styles = style; IconSegment_Outlined = __decorate([ customElement('mdui-icon-segment--outlined') ], IconSegment_Outlined); export { IconSegment_Outlined };