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

const Timer48h48: 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 24Zm22.887-6h-1.77v10.321h1.77V24c0-.486.14-.872.418-1.156a1.371 1.371 0 0 1 1.017-.427c.41 0 .744.138 1.004.413.27.266.404.633.404 1.101v4.39H35v-4.789c0-.569-.116-1.06-.348-1.472a2.295 2.295 0 0 0-.934-.964 2.7 2.7 0 0 0-1.366-.344 2.36 2.36 0 0 0-1.129.276 2.62 2.62 0 0 0-.836.674V18Zm-6.884 10.5c-.706 0-1.324-.115-1.854-.344-.53-.239-.938-.569-1.226-.99a2.586 2.586 0 0 1-.418-1.46c0-.54.149-1 .446-1.376.306-.376.692-.67 1.157-.88-.995-.523-1.492-1.248-1.492-2.175 0-.504.135-.958.405-1.362.278-.413.673-.739 1.184-.977.511-.239 1.11-.358 1.798-.358s1.287.12 1.798.358c.511.238.901.564 1.17.977.28.404.419.858.419 1.362 0 .532-.14.968-.418 1.308a3.616 3.616 0 0 1-1.074.867c.465.21.85.504 1.157.88.307.376.46.835.46 1.376 0 .55-.144 1.037-.432 1.46-.288.421-.697.751-1.226.99-.53.23-1.148.344-1.854.344Zm-1.645-2.89c0 .459.154.826.46 1.101.307.266.702.4 1.185.4.483 0 .878-.139 1.185-.414.316-.275.474-.637.474-1.087a1.36 1.36 0 0 0-.46-1.06c-.298-.284-.697-.426-1.199-.426-.502 0-.901.142-1.198.427-.298.275-.447.628-.447 1.06Zm.112-4.252c0 .385.135.715.404.99.27.276.646.414 1.13.414.482 0 .859-.138 1.128-.413.27-.276.404-.606.404-.991 0-.431-.144-.77-.432-1.019-.288-.256-.655-.385-1.1-.385-.447 0-.814.129-1.102.385-.288.248-.432.588-.432 1.019Zm-5.747 4.899H12v-1.431l2.62-6.07h1.91l-2.579 5.96h2.272v-2.257h1.728v2.257h1.087v1.54h-1.087v2.065h-1.728v-2.064Z"/>
</svg>
)
export default Timer48h48