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

const Timer3h24: 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.372-3h-.912v5.16h.912V12c0-.243.072-.436.216-.578a.717.717 0 0 1 .524-.213.69.69 0 0 1 .517.206c.14.133.209.317.209.55v2.196h.912v-2.395c0-.284-.06-.53-.18-.736a1.164 1.164 0 0 0-.48-.482 1.422 1.422 0 0 0-.705-.172 1.34 1.34 0 0 0-1.013.475V9Zm-4.726 4.94c.317.207.716.31 1.2.31.35 0 .66-.062.934-.186.273-.124.484-.296.632-.516a1.35 1.35 0 0 0 .23-.777c0-.299-.082-.546-.244-.744a1.205 1.205 0 0 0-.575-.399v-.006c.225-.074.4-.2.524-.379.13-.179.194-.404.194-.674 0-.262-.072-.489-.215-.681a1.34 1.34 0 0 0-.596-.44 2.268 2.268 0 0 0-.877-.159c-.455 0-.83.103-1.127.31a1.47 1.47 0 0 0-.582.763l.898.248c.143-.353.411-.53.804-.53.201 0 .371.055.51.165.144.11.216.26.216.448 0 .445-.273.667-.82.667H9.2v.723h.567c.259 0 .474.06.647.178a.565.565 0 0 1 .258.503.62.62 0 0 1-.237.516.926.926 0 0 1-.575.179 1.21 1.21 0 0 1-.632-.159.945.945 0 0 1-.373-.44L8 13.115c.115.34.33.614.646.825Z"/>
</svg>
)
export default Timer3h24