@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 809 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 IconFormatItalic_Rounded = class IconFormatItalic_Rounded extends LitElement {
render() {
return svgTag('<path d="M10 5.5c0 .83.67 1.5 1.5 1.5h.71l-3.42 8H7.5c-.83 0-1.5.67-1.5 1.5S6.67 18 7.5 18h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.71l3.42-8h1.29c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4h-5c-.83 0-1.5.67-1.5 1.5z"/>');
}
};
IconFormatItalic_Rounded.styles = style;
IconFormatItalic_Rounded = __decorate([
customElement('mdui-icon-format-italic--rounded')
], IconFormatItalic_Rounded);
export { IconFormatItalic_Rounded };