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

const Timer2h24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M4.854 2.854a.5.5 0 1 0-.708-.708l-1 1-1 1a.5.5 0 1 0 .708.708l.646-.647 1.084 1.084A9.963 9.963 0 0 0 2 12c0 5.523 4.477 10 10 10s10-4.477 10-10a9.963 9.963 0 0 0-2.584-6.709L20 4.707l.146.147a.5.5 0 0 0 .708-.708l-.5-.5-.5-.5a.5.5 0 0 0-.708.708l.147.146-.584.584A9.963 9.963 0 0 0 12 2a9.963 9.963 0 0 0-6.709 2.584L4.207 3.5l.647-.646ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm9.188-3h-.887v5.25h.887v-2.198c0-.247.07-.443.21-.588a.682.682 0 0 1 .51-.217c.205 0 .372.07.503.21.135.135.202.322.202.56v2.233h.887v-2.436c0-.29-.058-.539-.175-.749a1.16 1.16 0 0 0-.467-.49 1.334 1.334 0 0 0-.685-.175c-.205 0-.393.047-.566.14a1.315 1.315 0 0 0-.419.343V9Zm-3.365 2.856-1.704 1.596v.798h3.359v-.84H9.383l1.166-1.092c.307-.285.529-.55.664-.798.14-.252.21-.52.21-.805a1.32 1.32 0 0 0-.204-.721 1.35 1.35 0 0 0-.586-.511c-.256-.126-.566-.189-.929-.189-.447 0-.82.105-1.117.315-.298.21-.494.469-.587.777l.873.252a.796.796 0 0 1 .314-.392.874.874 0 0 1 .503-.147c.233 0 .417.065.552.196a.648.648 0 0 1 .202.497.981.981 0 0 1-.132.497c-.089.15-.252.338-.49.567Z"/>
</svg>
)
export default Timer2h24