UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 747 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 IconScreenRotationAlt = class IconScreenRotationAlt extends LitElement { render() { return svgTag('<path d="m4 7.59 5-5c.78-.78 2.05-.78 2.83 0L20.24 11h-2.83L10.4 4 5.41 9H8v2H2V5h2v2.59zM20 19h2v-6h-6v2h2.59l-4.99 5-7.01-7H3.76l8.41 8.41c.78.78 2.05.78 2.83 0l5-5V19z"/>'); } }; IconScreenRotationAlt.styles = style; IconScreenRotationAlt = __decorate([ customElement('mdui-icon-screen-rotation-alt') ], IconScreenRotationAlt); export { IconScreenRotationAlt };