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

const Timer3h20: 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 2.437a.5.5 0 0 0-.707-.707l-.833.833-.833.833a.5.5 0 1 0 .707.707l.48-.48.906.907a8.25 8.25 0 1 0 12.353 0l.49-.49.064.063a.5.5 0 0 0 .707-.707l-.417-.416-.416-.417a.5.5 0 1 0-.708.707l.063.063-.49.49A8.219 8.219 0 0 0 10 1.75a8.219 8.219 0 0 0-5.47 2.073l-.906-.906.48-.48ZM3.25 10a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Zm7.894-2.5h-.76v4.3h.76V10c0-.203.06-.363.18-.482a.598.598 0 0 1 .436-.177c.176 0 .32.057.431.172.116.11.174.263.174.458v1.83h.76V9.804c0-.237-.05-.442-.15-.614a.97.97 0 0 0-.4-.4 1.185 1.185 0 0 0-.587-.144 1.118 1.118 0 0 0-.844.396V7.5Zm-3.939 4.117c.264.172.597.258 1 .258.291 0 .55-.052.778-.155a1.23 1.23 0 0 0 .527-.43c.128-.187.191-.403.191-.648a.94.94 0 0 0-.203-.62 1.004 1.004 0 0 0-.479-.332v-.005a.827.827 0 0 0 .437-.316.935.935 0 0 0 .162-.562.923.923 0 0 0-.18-.567 1.116 1.116 0 0 0-.497-.367 1.89 1.89 0 0 0-.73-.132c-.38 0-.692.086-.94.258a1.226 1.226 0 0 0-.485.636l.749.207c.12-.295.343-.442.67-.442a.66.66 0 0 1 .425.138c.12.092.18.216.18.372 0 .371-.228.557-.683.557h-.46v.602h.472c.216 0 .395.05.539.149a.471.471 0 0 1 .215.418.516.516 0 0 1-.197.43.772.772 0 0 1-.479.15 1.01 1.01 0 0 1-.527-.132.787.787 0 0 1-.311-.367l-.712.212c.095.283.275.512.538.688Z"/>
</svg>
)
export default Timer3h20