import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const Refresh64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M9.5 32C9.5 19.574 19.574 9.5 32 9.5c7.942 0 14.925 4.114 18.93 10.333H41.6a1.5 1.5 0 1 0 0 3h13.333a1.5 1.5 0 0 0 1.5-1.5V8a1.5 1.5 0 0 0-3 0v10.178C48.892 11.153 40.991 6.5 32 6.5 17.917 6.5 6.5 17.917 6.5 32S17.917 57.5 32 57.5c13.127 0 23.935-9.917 25.344-22.669a1.5 1.5 0 1 0-2.981-.33C53.119 45.752 43.58 54.5 32 54.5 19.574 54.5 9.5 44.426 9.5 32Z"/>
</svg>
)
export default Refresh64