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

const Timer48h32: 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 3.687a.5.5 0 1 0-.708-.707L4.313 4.313 2.98 5.646a.5.5 0 1 0 .707.707l.98-.98L6.46 7.169A12.954 12.954 0 0 0 3 16c0 7.18 5.82 13 13 13s13-5.82 13-13c0-3.41-1.313-6.513-3.46-8.832l1.127-1.128.313.313a.5.5 0 0 0 .707-.707l-.667-.666-.666-.667a.5.5 0 1 0-.707.707l.313.313-1.128 1.128A12.954 12.954 0 0 0 16 3c-3.41 0-6.513 1.313-8.832 3.46L5.374 4.668l.98-.98ZM5 16C5 9.925 9.925 5 16 5s11 4.925 11 11-4.925 11-11 11S5 22.075 5 16Zm15.258-4h-1.18v6.88h1.18V16c0-.324.093-.581.279-.77a.914.914 0 0 1 .678-.285.88.88 0 0 1 .669.275c.18.178.27.422.27.734v2.927h1.18v-3.193c0-.38-.078-.706-.233-.982a1.53 1.53 0 0 0-.622-.642 1.796 1.796 0 0 0-.911-.23 1.58 1.58 0 0 0-.753.184 1.744 1.744 0 0 0-.557.45V12Zm-4.59 7c-.47 0-.882-.076-1.235-.23a1.91 1.91 0 0 1-.818-.66 1.724 1.724 0 0 1-.278-.973c0-.36.099-.666.297-.917.204-.25.461-.446.771-.587-.663-.349-.994-.832-.994-1.45 0-.336.09-.639.27-.908a1.89 1.89 0 0 1 .79-.651c.34-.16.74-.239 1.198-.239.458 0 .858.08 1.198.239.341.159.601.376.78.651.187.27.28.572.28.908 0 .355-.093.646-.28.872a2.398 2.398 0 0 1-.715.578c.31.14.567.336.772.587.204.25.306.557.306.918 0 .366-.096.69-.288.972a1.91 1.91 0 0 1-.818.66c-.352.154-.764.23-1.235.23Zm-1.096-1.927c0 .306.103.55.307.734.204.178.468.266.79.266s.585-.091.79-.275a.914.914 0 0 0 .316-.725.907.907 0 0 0-.307-.706c-.198-.19-.465-.285-.8-.285-.334 0-.6.095-.798.285a.92.92 0 0 0-.298.706Zm.075-2.835c0 .257.09.478.27.661.179.184.43.275.752.275s.573-.091.752-.275a.91.91 0 0 0 .27-.66c0-.288-.096-.514-.288-.68-.192-.17-.437-.256-.734-.256-.298 0-.542.085-.734.257-.192.165-.288.391-.288.678Zm-3.832 3.267H8v-.955l1.747-4.046h1.273L9.3 16.477h1.515v-1.505h1.152v1.505h.725v1.027h-.725v1.377h-1.152v-1.377Z"/>
</svg>
)
export default Timer48h32