Home Reference Source

src/assets/iconsSvgr/OkIconSvgr.js

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

/**
 * SVGR component representing the "ok" round icon.
 * @param {Object} props - Properties
 * @returns {Object} Round "ok" icon
 */
const OkIconSvgr = props => (
    <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" {...props}>
        <Circle
            cx={60}
            cy={60}
            r={60}
            style={{
                fill: '#3b8609',
            }}
        />
        <Path
            style={{
                fill: 'none',
            }}
            d="M10 13h100v100H10z"
        />
        <Path
            style={{
                fill: 'none',
                stroke: '#fbfcfb',
                strokeLinecap: 'round',
                strokeLinejoin: 'round',
                strokeWidth: 17,
            }}
            d="M26.07 65.12 45.85 84.9M93.93 39.51 48.53 84.9"
        />
    </Svg>
);

export default OkIconSvgr;