@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 874 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_Outlined = class IconRotate_90DegreesCw_Outlined extends LitElement {
render() {
return svgTag('<path d="M2 13a9 9 0 0 0 13.79 7.62l-1.46-1.46c-.99.53-2.13.84-3.33.84-3.86 0-7-3.14-7-7s3.14-7 7-7h.17L9.59 7.59 11 9l4-4-4-4-1.42 1.41L11.17 4H11a9 9 0 0 0-9 9zm9 0 6 6 6-6-6-6-6 6zm6 3.17L13.83 13 17 9.83 20.17 13 17 16.17z"/>');
}
};
IconRotate_90DegreesCw_Outlined.styles = style;
IconRotate_90DegreesCw_Outlined = __decorate([
customElement('mdui-icon-rotate-90-degrees-cw--outlined')
], IconRotate_90DegreesCw_Outlined);
export { IconRotate_90DegreesCw_Outlined };