@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 741 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 IconBento_Rounded = class IconBento_Rounded extends LitElement {
render() {
return svgTag('<path d="M16 11V5h4c1.1 0 2 .9 2 2v4h-6zm4 8c1.1 0 2-.9 2-2v-4h-6v6h4zM14 5v14H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h10zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z"/>');
}
};
IconBento_Rounded.styles = style;
IconBento_Rounded = __decorate([
customElement('mdui-icon-bento--rounded')
], IconBento_Rounded);
export { IconBento_Rounded };