UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 677 B
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 IconFullscreen_Outlined = class IconFullscreen_Outlined extends LitElement { render() { return svgTag('<path d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"/>'); } }; IconFullscreen_Outlined.styles = style; IconFullscreen_Outlined = __decorate([ customElement('mdui-icon-fullscreen--outlined') ], IconFullscreen_Outlined); export { IconFullscreen_Outlined };