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

const Timer2h32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <path fill-rule="evenodd" d="M6.354 3.687a.5.5 0 1 0-.708-.707L4.313 4.313 2.98 5.646a.5.5 0 1 0 .707.707l.98-.98L6.46 7.169A12.954 12.954 0 0 0 3 16c0 7.18 5.82 13 13 13s13-5.82 13-13c0-3.41-1.313-6.513-3.46-8.832l1.127-1.128.313.313a.5.5 0 0 0 .707-.707l-.667-.666-.666-.667a.5.5 0 1 0-.707.707l.313.313-1.128 1.128A12.954 12.954 0 0 0 16 3c-3.41 0-6.513 1.313-8.832 3.46L5.374 4.668l.98-.98ZM5 16C5 9.925 9.925 5 16 5s11 4.925 11 11-4.925 11-11 11S5 22.075 5 16Zm12.584-4h-1.182v7h1.182v-2.93c0-.33.094-.592.28-.785a.91.91 0 0 1 .68-.29c.273 0 .496.094.67.28.18.181.27.43.27.748V19h1.183v-3.248c0-.386-.078-.719-.233-.999a1.546 1.546 0 0 0-.624-.653 1.78 1.78 0 0 0-.912-.233c-.274 0-.525.062-.755.186-.223.118-.41.27-.559.458V12Zm-4.487 3.808-2.272 2.128V19h4.479v-1.12H12.51l1.556-1.456c.41-.38.704-.734.884-1.064a2.18 2.18 0 0 0 .28-1.073c0-.355-.09-.676-.27-.962a1.799 1.799 0 0 0-.783-.681c-.341-.168-.754-.252-1.238-.252-.596 0-1.093.14-1.49.42-.397.28-.658.625-.782 1.036l1.164.336c.087-.224.226-.398.419-.523.192-.13.416-.196.67-.196.31 0 .556.087.736.262.18.168.27.389.27.662 0 .237-.06.458-.177.663-.118.199-.335.451-.652.756Z"/>
</svg>
)
export default Timer2h32