@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 693 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 IconTitle_Rounded = class IconTitle_Rounded extends LitElement {
render() {
return svgTag('<path d="M5 5.5C5 6.33 5.67 7 6.5 7h4v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h4c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5z"/>');
}
};
IconTitle_Rounded.styles = style;
IconTitle_Rounded = __decorate([
customElement('mdui-icon-title--rounded')
], IconTitle_Rounded);
export { IconTitle_Rounded };