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

const Timer20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M4.103 1.73a.5.5 0 0 1 0 .707l-.48.48.907.906A8.219 8.219 0 0 1 10 1.75c2.098 0 4.014.783 5.47 2.073l.49-.49-.064-.063a.5.5 0 1 1 .707-.707l.417.417.417.416a.5.5 0 1 1-.707.707l-.063-.063-.49.49a8.25 8.25 0 1 1-12.353 0l-.907-.906-.48.48a.5.5 0 0 1-.707-.708l.833-.833.833-.833a.5.5 0 0 1 .707 0ZM10 3.25a6.75 6.75 0 1 0 0 13.5 6.75 6.75 0 0 0 0-13.5Zm1.25 6.333a1.25 1.25 0 1 1-.793-1.164l2.106-2.106a.5.5 0 1 1 .707.707l-2.106 2.106c.055.142.086.296.086.457Z"/>
</svg>
)
export default Timer20