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

const Timer32: 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 2.98a.5.5 0 0 1 0 .707l-.98.98L7.168 6.46A12.954 12.954 0 0 1 16 3c3.41 0 6.513 1.313 8.832 3.46l1.128-1.127-.314-.313a.5.5 0 1 1 .708-.707l.666.667.667.666a.5.5 0 1 1-.707.707l-.313-.313-1.128 1.128A12.954 12.954 0 0 1 29 16c0 7.18-5.82 13-13 13S3 23.18 3 16c0-3.41 1.313-6.513 3.46-8.832L4.668 5.374l-.98.98a.5.5 0 0 1-.707-.708l1.333-1.333L5.646 2.98a.5.5 0 0 1 .708 0ZM16 5C9.925 5 5 9.925 5 16s4.925 11 11 11 11-4.925 11-11S22.075 5 16 5Zm2 10.333a2 2 0 1 1-.984-1.723l3.297-3.297a.5.5 0 0 1 .707.707l-3.297 3.297c.176.298.277.645.277 1.016Z"/>
</svg>
)
export default Timer32