Home Reference Source

src/assets/iconsSvgr/LeftArrowSvgr.js

import * as React from 'react';
import Svg, {Path} from 'react-native-svg';

/**
 * SVGR component representing an arrow pointing to the left.
 * @param {Object} props - Properties
 * @returns {Object} Symbol with arrow pointing to the left.
 */
const LeftArrowSvgr = props => (
    <Svg
        xmlns="http://www.w3.org/2000/svg"
        viewBox="0 0 81.58 55.98"
        {...props}>
        <Path
            d="M81.58 19.69v17.09c0 2.46-1.99 4.46-4.45 4.46H49.58v9.71c0 3.87-4.19 6.28-7.53 4.34L2.5 32.32c-3.33-1.93-3.33-6.74 0-8.67L42.05.68c3.34-1.94 7.53.48 7.53 4.34v10.22h27.55c2.46 0 4.45 1.99 4.45 4.45Z"
            style={{
                fill: '#fbfcfb',
            }}
        />
    </Svg>
);

export default LeftArrowSvgr;