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

const Timer3h32: 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 16Zm12.83-4h-1.216v6.88h1.216V16c0-.324.096-.581.287-.77a.957.957 0 0 1 .7-.285c.28 0 .51.092.689.275.185.178.278.422.278.734v2.927H21v-3.193c0-.38-.08-.706-.24-.982a1.552 1.552 0 0 0-.641-.642 1.896 1.896 0 0 0-.939-.23c-.28 0-.54.062-.776.184-.23.116-.42.266-.574.45V12Zm-6.301 6.587c.421.275.954.413 1.6.413.465 0 .88-.083 1.244-.248.364-.165.645-.394.843-.688a1.8 1.8 0 0 0 .307-1.037c0-.397-.109-.727-.326-.99a1.606 1.606 0 0 0-.766-.532v-.01c.3-.097.533-.266.699-.504.172-.239.258-.538.258-.9 0-.348-.095-.65-.287-.908a1.786 1.786 0 0 0-.795-.587 3.025 3.025 0 0 0-1.168-.21c-.607 0-1.108.137-1.504.412-.39.275-.648.615-.776 1.018l1.197.33c.192-.47.55-.706 1.073-.706.268 0 .495.074.68.22a.711.711 0 0 1 .287.597c0 .593-.364.89-1.091.89h-.738v.963h.757c.345 0 .632.08.862.239.23.152.345.376.345.67 0 .293-.106.522-.316.687-.211.16-.467.239-.767.239-.325 0-.606-.07-.842-.211a1.26 1.26 0 0 1-.499-.587l-1.14.34c.154.452.441.819.863 1.1Z"/>
</svg>
)
export default Timer3h32