@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 748 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 IconFlipToFront = class IconFlipToFront extends LitElement {
render() {
return svgTag('<path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3a2 2 0 0 0 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z"/>');
}
};
IconFlipToFront.styles = style;
IconFlipToFront = __decorate([
customElement('mdui-icon-flip-to-front')
], IconFlipToFront);
export { IconFlipToFront };