@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
29 lines (28 loc) • 1.46 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 { Svg, Path } from 'react-native-svg';
import { genOutlineIcon } from "./gen";
var DoubleArrowClockwiseOutline = genOutlineIcon(function (_ref, props) {
var size = _ref.size,
color = _ref.color,
strokeWidth = _ref.strokeWidth;
return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
viewBox: "0 0 24 24",
fill: "none",
width: size,
height: size
}), /*#__PURE__*/React.createElement(Path, {
strokeLinejoin: "round",
strokeLinecap: "round",
strokeWidth: strokeWidth || 2,
stroke: color,
d: "M3.183 10.186c.12-.586.297-1.15.524-1.69a9.015 9.015 0 0 1 1.93-2.86A8.972 8.972 0 0 1 12 3a8.972 8.972 0 0 1 6.364 2.636C19.193 6.465 20.5 8 20.5 8m.5 6a9.014 9.014 0 0 1-2.453 4.55 8.972 8.972 0 0 1-6.364 2.636 8.972 8.972 0 0 1-6.364-2.637c-.83-.828-2.136-2.363-2.136-2.363"
}), /*#__PURE__*/React.createElement(Path, {
strokeLinejoin: "round",
strokeLinecap: "round",
strokeWidth: strokeWidth || 2,
stroke: color,
d: "M21 4.5v4h-4M3.183 19.686v-4h4"
}));
});
export default DoubleArrowClockwiseOutline;