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

const Temperature64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M26.667 9.5a6.5 6.5 0 0 0-6.5 6.5v16c0 .508-.253.957-.64 1.228a11.812 11.812 0 0 0-4.694 9.439c0 6.535 5.298 11.833 11.834 11.833 6.535 0 11.833-5.298 11.833-11.833 0-3.853-1.84-7.276-4.695-9.439A1.499 1.499 0 0 1 33.167 32V16a6.5 6.5 0 0 0-6.5-6.5ZM41.5 42.667c0-4.58-2.076-8.674-5.333-11.393V16a9.5 9.5 0 0 0-19 0v15.274a14.805 14.805 0 0 0-5.334 11.393c0 8.192 6.641 14.833 14.834 14.833 8.192 0 14.833-6.641 14.833-14.833ZM44 11a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-8Zm-1 10.333a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2h-8a1 1 0 0 1-1-1Zm1 8.334a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-8Zm-15.833 6.331V21.334h-3V36a6.833 6.833 0 1 0 3 0Z"/>
</svg>
)
export default Temperature64