UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 796 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 IconSell_Outlined = class IconSell_Outlined extends LitElement { render() { return svgTag('<path d="m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM12.83 20 4 11.17V4h7.17L20 12.83 12.83 20z"/><circle cx="6.5" cy="6.5" r="1.5"/>'); } }; IconSell_Outlined.styles = style; IconSell_Outlined = __decorate([ customElement('mdui-icon-sell--outlined') ], IconSell_Outlined); export { IconSell_Outlined };