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

const Temperature48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M20 7.5a4.5 4.5 0 0 0-4.5 4.5v12c0 .506-.25.953-.633 1.224a8.5 8.5 0 1 0 10.267 0A1.498 1.498 0 0 1 24.5 24V12A4.5 4.5 0 0 0 20 7.5ZM31.5 32c0-3.487-1.553-6.61-4-8.718V12a7.5 7.5 0 0 0-15 0v11.282A11.477 11.477 0 0 0 8.5 32c0 6.351 5.149 11.5 11.5 11.5S31.5 38.351 31.5 32ZM33 8a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm-1 8a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2h-6a1 1 0 0 1-1-1Zm1 6a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm-11.5 4.707V16h-3v10.707a5.5 5.5 0 1 0 3 0Z"/>
</svg>
)
export default Temperature48