@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 853 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 Icon1k_TwoTone = class Icon1k_TwoTone extends LitElement {
render() {
return svgTag('<path d="M5 19h14V5H5v14zm7-10h1.5v2.25L15.25 9H17l-2.25 3L17 15h-1.75l-1.75-2.25V15H12V9zM7 9h3v6H8.5v-4.5H7V9z" opacity=".3"/><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"/><path d="M8.5 15H10V9H7v1.5h1.5zm5-2.25L15.25 15H17l-2.25-3L17 9h-1.75l-1.75 2.25V9H12v6h1.5z"/>');
}
};
Icon1k_TwoTone.styles = style;
Icon1k_TwoTone = __decorate([
customElement('mdui-icon-1k--two-tone')
], Icon1k_TwoTone);
export { Icon1k_TwoTone };