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

const History64: 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="M22.667 19.833h-9.743C16.929 13.614 23.912 9.5 31.854 9.5c12.427 0 22.5 10.074 22.5 22.5s-10.073 22.5-22.5 22.5c-11.58 0-21.119-8.75-22.362-19.998a1.5 1.5 0 1 0-2.982.33C7.92 47.581 18.728 57.5 31.854 57.5c14.083 0 25.5-11.417 25.5-25.5S45.937 6.5 31.854 6.5c-8.725 0-16.424 4.382-21.02 11.06V8a1.5 1.5 0 0 0-3 0v13.333a1.5 1.5 0 0 0 1.5 1.5h13.333a1.5 1.5 0 1 0 0-3Zm10.833 1.5a1.5 1.5 0 0 0-3 0V32c0 .398.158.78.44 1.06l5.333 5.334a1.5 1.5 0 1 0 2.121-2.121L33.5 31.379V21.333Z"/>
</svg>
)
export default History64