@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 821 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 IconRotate_90DegreesCw = class IconRotate_90DegreesCw extends LitElement {
render() {
return svgTag('<path d="M4.64 19.37c3.03 3.03 7.67 3.44 11.15 1.25l-1.46-1.46c-2.66 1.43-6.04 1.03-8.28-1.21a7.007 7.007 0 0 1 0-9.9C7.42 6.69 9.21 6.03 11 6.03V9l4-4-4-4v3.01c-2.3 0-4.61.87-6.36 2.63-3.52 3.51-3.52 9.21 0 12.73zM11 13l6 6 6-6-6-6-6 6z"/>');
}
};
IconRotate_90DegreesCw.styles = style;
IconRotate_90DegreesCw = __decorate([
customElement('mdui-icon-rotate-90-degrees-cw')
], IconRotate_90DegreesCw);
export { IconRotate_90DegreesCw };