@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 838 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 IconPanToolAlt_Rounded = class IconPanToolAlt_Rounded extends LitElement {
render() {
return svgTag('<path d="M5.2 15.43c0-.65.6-1.13 1.24-.99l3.56.8V4.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h.91c.31 0 .62.07.89.21l4.09 2.04c.77.38 1.21 1.22 1.09 2.07l-.63 4.46c-.14.99-.99 1.72-1.98 1.72h-6.16c-.53 0-1.29-.21-1.66-.59l-4.07-4.29a.976.976 0 0 1-.28-.69z"/>');
}
};
IconPanToolAlt_Rounded.styles = style;
IconPanToolAlt_Rounded = __decorate([
customElement('mdui-icon-pan-tool-alt--rounded')
], IconPanToolAlt_Rounded);
export { IconPanToolAlt_Rounded };