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 IconFavorite_Rounded = class IconFavorite_Rounded extends LitElement { render() { return svgTag('<path d="M13.35 20.13c-.76.69-1.93.69-2.69-.01l-.11-.1C5.3 15.27 1.87 12.16 2 8.28c.06-1.7.93-3.33 2.34-4.29 2.64-1.8 5.9-.96 7.66 1.1 1.76-2.06 5.02-2.91 7.66-1.1 1.41.96 2.28 2.59 2.34 4.29.14 3.88-3.3 6.99-8.55 11.76l-.1.09z"/>'); } }; IconFavorite_Rounded.styles = style; IconFavorite_Rounded = __decorate([ customElement('mdui-icon-favorite--rounded') ], IconFavorite_Rounded); export { IconFavorite_Rounded };