import React from 'react';

import { SVG, IProps as IPropsSVG } from '..';

export interface IProps {
    readonly svg?: IPropsSVG
}

export const IconArrowsCircleArrowRightCurved = (props: IProps) => (
    <SVG {...props.svg}>
        <path
            fillRule="evenodd"
            d="M12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11-4.925 11-11 11Zm0-2a9 9 0 1 0 0-18 9 9 0 0 0 0 18Zm.293-14.293L14.586 9H10a4 4 0 0 0 0 8v-2a2 2 0 1 1 0-4h4.586l-2.293 2.293 1.414 1.414L18.414 10l-4.707-4.707-1.414 1.414Z"
            clipRule="evenodd"
        />
    </SVG>
);

export default IconArrowsCircleArrowRightCurved;
