@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.17 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Reload({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Reload",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M22.001 1a1 1 0 0 0-1 1v3.68a10.52 10.52 0 0 0-1.22-1.45 11 11 0 1 0 0 15.55 10.81 10.81 0 0 0 2.68-4.35 1 1 0 0 0-1.9-.62 8.899 8.899 0 0 1-2.19 3.56 9 9 0 1 1 0-12.73c.458.46.864.97 1.21 1.52h-3.73a1 1 0 0 0 0 2h6.15a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z",
shapeRendering: "geometricPrecision"
}));
}
Reload.displayName = 'Reload';
export default createBaseComponent(Reload);