@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 722 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 IconStyle_Sharp = class IconStyle_Sharp extends LitElement {
render() {
return svgTag('<path d="M3.87 20.21v-9.03l-3.19 7.7 3.19 1.33zm18.92-2.43L16.31 2.14 5.26 6.71l6.48 15.64 11.05-4.57zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 13h3.45l-3.45-8.34v8.34z"/>');
}
};
IconStyle_Sharp.styles = style;
IconStyle_Sharp = __decorate([
customElement('mdui-icon-style--sharp')
], IconStyle_Sharp);
export { IconStyle_Sharp };