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

const Timer2h48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M9.707 5.707a1 1 0 0 0-1.414-1.414l-2 2-2 2a1 1 0 0 0 1.414 1.414L7 8.414l2.522 2.523A19.428 19.428 0 0 0 4.5 24c0 10.77 8.73 19.5 19.5 19.5S43.5 34.77 43.5 24c0-5.025-1.9-9.606-5.022-13.063L40 9.414l.293.293a1 1 0 0 0 1.414-1.414l-1-1-1-1a1 1 0 1 0-1.414 1.414l.293.293-1.523 1.522A19.428 19.428 0 0 0 24 4.5c-5.025 0-9.606 1.9-13.063 5.022L8.414 7l1.293-1.293ZM7.5 24c0-9.113 7.387-16.5 16.5-16.5S40.5 14.887 40.5 24 33.113 40.5 24 40.5 7.5 33.113 7.5 24Zm18.877-6h-1.774v10.5h1.774v-4.396c0-.495.14-.887.419-1.176.28-.29.619-.434 1.02-.434.41 0 .744.14 1.005.42.27.27.405.644.405 1.12V28.5H31v-4.872c0-.579-.116-1.078-.35-1.498a2.32 2.32 0 0 0-.935-.98c-.4-.233-.857-.35-1.369-.35-.41 0-.787.093-1.131.28a2.63 2.63 0 0 0-.838.686V18Zm-6.732 5.712-3.408 3.192V28.5h6.719v-1.68h-4.19l2.332-2.184c.615-.57 1.057-1.101 1.327-1.596.28-.504.42-1.04.42-1.61 0-.532-.136-1.013-.406-1.442-.26-.43-.652-.77-1.173-1.022-.512-.252-1.132-.378-1.858-.378-.894 0-1.639.21-2.235.63-.596.42-.987.938-1.173 1.554l1.746.504c.13-.336.34-.597.629-.784a1.747 1.747 0 0 1 1.005-.294c.466 0 .834.13 1.104.392.27.252.405.583.405.994 0 .355-.089.686-.266.994-.177.299-.503.677-.978 1.134Z"/>
</svg>
)
export default Timer2h48