@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 812 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 IconCategory_Rounded = class IconCategory_Rounded extends LitElement {
render() {
return svgTag('<path d="M11.15 3.4 7.43 9.48c-.41.66.07 1.52.85 1.52h7.43c.78 0 1.26-.86.85-1.52L12.85 3.4a.993.993 0 0 0-1.7 0z"/><circle cx="17.5" cy="17.5" r="4.5"/><path d="M4 21.5h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1z"/>');
}
};
IconCategory_Rounded.styles = style;
IconCategory_Rounded = __decorate([
customElement('mdui-icon-category--rounded')
], IconCategory_Rounded);
export { IconCategory_Rounded };