src/assets/iconsSvgr/UndoIconSvgr.js
import * as React from 'react';
import Svg, {Path} from 'react-native-svg';
/**
* SVGR component representing the "undo" symbol.
* @param {Object} props - Properties
* @returns {Object} Undo icon
*/
const UndoIconSvgr = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" {...props}>
<Path
d="m0 43.69 49.97-33.32v20.82c1.96.17 3.8.3 5.64.49 8.11.87 15.89 2.88 22.89 7.23 13.11 8.14 20.22 19.99 21.33 35.33.36 5.04.06 10.14.06 15.24-1.53.41-2.57-.01-3.57-1.59-3.43-5.38-6.86-10.77-10.7-15.85-6.8-9-16.42-13.2-27.24-15.04-2.68-.45-5.42-.58-8.26-.88v20.96C33.32 65.91 16.77 54.87 0 43.69Z"
style={{
fill: '#000000',
}}
/>
<Path
style={{
fill: 'none',
}}
d="M0 0h100v100H0z"
/>
</Svg>
);
export default UndoIconSvgr;