UNPKG

@fruits-chain/icons-react-native

Version:

🎨 React Native Icon

29 lines (28 loc) • 1.21 kB
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 ArrowClockwiseOutline = 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: "M18.364 18.364a9 9 0 1 1 0-12.728C19.193 6.466 20.5 8 20.5 8" }), /*#__PURE__*/React.createElement(Path, { strokeLinejoin: "round", strokeLinecap: "round", strokeWidth: strokeWidth || 2, stroke: color, d: "M21 4.5v4h-4" })); }); export default ArrowClockwiseOutline;