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

const Timer2h64: 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="M12.707 7.374a1 1 0 0 0-1.414-1.414L8.627 8.626h-.001L5.96 11.294a1 1 0 1 0 1.414 1.414l1.96-1.96 3.941 3.943A25.41 25.41 0 0 0 6.5 32c0 14.083 11.417 25.5 25.5 25.5S57.5 46.083 57.5 32a25.41 25.41 0 0 0-6.776-17.31l2.61-2.609.625.626a1 1 0 0 0 1.415-1.414L54.04 9.96l-1.333-1.334a1 1 0 1 0-1.414 1.415l.626.626-2.609 2.608A25.41 25.41 0 0 0 32 6.5a25.41 25.41 0 0 0-17.31 6.775l-3.942-3.942 1.96-1.96ZM9.5 32C9.5 19.574 19.574 9.5 32 9.5S54.5 19.574 54.5 32 44.426 54.5 32 54.5 9.5 44.426 9.5 32Zm25.669-8h-2.365v14h2.365v-5.86c0-.66.186-1.183.559-1.568a1.819 1.819 0 0 1 1.36-.579c.545 0 .992.187 1.34.56.36.361.54.859.54 1.493V38h2.365v-6.496c0-.771-.155-1.437-.465-1.997A3.091 3.091 0 0 0 39.62 28.2c-.534-.311-1.142-.467-1.825-.467-.547 0-1.05.125-1.509.374-.447.236-.82.541-1.117.914v-5.02Zm-8.975 7.616-4.544 4.256V38h8.958v-2.24H25.02l3.11-2.912c.82-.759 1.409-1.468 1.77-2.128a4.36 4.36 0 0 0 .558-2.147c0-.709-.18-1.35-.54-1.922-.348-.573-.87-1.027-1.565-1.363-.682-.336-1.508-.504-2.477-.504-1.191 0-2.185.28-2.98.84-.794.56-1.315 1.25-1.564 2.072l2.328.672c.174-.448.453-.796.838-1.045a2.329 2.329 0 0 1 1.341-.392c.621 0 1.111.174 1.471.522.36.336.54.778.54 1.326 0 .473-.117.914-.353 1.325-.236.398-.67.902-1.304 1.512Z"/>
</svg>
)
export default Timer2h64