@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 828 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 IconPlusOne_Rounded = class IconPlusOne_Rounded extends LitElement {
render() {
return svgTag('<path d="M9 8c-.55 0-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V9c0-.55-.45-1-1-1zm5.5-1.21c0 .57.52 1 1.08.89L17 7.4V17c0 .55.45 1 1 1s1-.45 1-1V6.27c0-.65-.6-1.12-1.23-.97l-2.57.62c-.41.09-.7.46-.7.87z"/>');
}
};
IconPlusOne_Rounded.styles = style;
IconPlusOne_Rounded = __decorate([
customElement('mdui-icon-plus-one--rounded')
], IconPlusOne_Rounded);
export { IconPlusOne_Rounded };