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

const Notification48: 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="M25.5 6a1.5 1.5 0 0 0-3 0v2.597c-5.611.73-9.952 5.507-10 11.306l-.986 7.888a1.498 1.498 0 0 0-.005.043l-.833 6.666H10a1.5 1.5 0 0 0 0 3h6.65a7.503 7.503 0 0 0 14.7 0H38a1.5 1.5 0 0 0 0-3h-.676L35.5 19.903c-.048-5.799-4.389-10.575-10-11.306V6ZM14.324 29.5l-.625 5h20.602l-1.79-14.314A1.505 1.505 0 0 1 32.5 20a8.5 8.5 0 0 0-17 0c0 .062-.004.124-.012.186L14.7 26.5H22a1.5 1.5 0 0 1 0 3h-7.676ZM24 40.5a4.502 4.502 0 0 1-4.244-3h8.488a4.502 4.502 0 0 1-4.244 3Z"/>
</svg>
)
export default Notification48