@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
20 lines (19 loc) • 1.12 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 { genFillIcon } from "./gen";
var ArrowRightFill = genFillIcon(function (_ref, props) {
var size = _ref.size,
color = _ref.color,
strokeWidth = _ref.strokeWidth;
return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
viewBox: "0 0 1024 1024",
fill: color,
width: size,
height: size
}), /*#__PURE__*/React.createElement(Path, {
d: "M755.2 544 390.4 874.667c-17.067 14.933-44.8 14.933-59.733-2.134-6.4-8.533-10.667-19.2-10.667-29.866V181.333c0-23.466 19.2-42.666 42.667-42.666 10.666 0 21.333 4.266 27.733 10.666L753.067 480c17.066 14.933 19.2 42.667 2.133 59.733 2.133 2.134 0 2.134 0 4.267z",
fill: color
}));
});
export default ArrowRightFill;