Home Reference Source

src/assets/iconsSvgr/PreviousIconSvgr.js

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

/**
 * SVGR component representing the "previous" round icon
 * @param {Object} props - Properties
 * @returns {Object} Round "previous" icon.
 */
const PreviousIconSvgr = props => (
    <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" {...props}>
        <Circle
            cx={60}
            cy={60}
            r={60}
            style={{
                fill: '#f3b353',
            }}
        />
        <Path
            d="M97 50.7v17.09a4.46 4.46 0 0 1-4.45 4.46H65V82a5 5 0 0 1-7.5 4.3L18 63.33a5 5 0 0 1 0-8.67l39.55-23A5 5 0 0 1 65 36v10.25h27.58A4.45 4.45 0 0 1 97 50.7Z"
            style={{
                fill: '#fbfcfb',
            }}
        />
    </Svg>
);

export default PreviousIconSvgr;