@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 805 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 IconBorderStyle_Rounded = class IconBorderStyle_Rounded extends LitElement {
render() {
return svgTag('<path d="M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 5v15c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm16 4h2V7h-2v2z"/>');
}
};
IconBorderStyle_Rounded.styles = style;
IconBorderStyle_Rounded = __decorate([
customElement('mdui-icon-border-style--rounded')
], IconBorderStyle_Rounded);
export { IconBorderStyle_Rounded };