@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 801 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 IconScreenLockLandscape_Sharp = class IconScreenLockLandscape_Sharp extends LitElement {
render() {
return svgTag('<path d="M23 5H1v14h22V5zm-4 12H5V7h14v10zM9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z"/>');
}
};
IconScreenLockLandscape_Sharp.styles = style;
IconScreenLockLandscape_Sharp = __decorate([
customElement('mdui-icon-screen-lock-landscape--sharp')
], IconScreenLockLandscape_Sharp);
export { IconScreenLockLandscape_Sharp };