@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 815 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 IconSquareFoot_Sharp = class IconSquareFoot_Sharp extends LitElement {
render() {
return svgTag('<path d="m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v16h16l-2.34-2.34zM7 17v-5.76L12.76 17H7z"/>');
}
};
IconSquareFoot_Sharp.styles = style;
IconSquareFoot_Sharp = __decorate([
customElement('mdui-icon-square-foot--sharp')
], IconSquareFoot_Sharp);
export { IconSquareFoot_Sharp };