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

const Notification24: 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="M13 3a1 1 0 1 0-2 0v1.083a6.002 6.002 0 0 0-5 5.852l-.49 3.925a1.01 1.01 0 0 0-.004.03L5.117 17H5a1 1 0 1 0 0 2h3.126a4.002 4.002 0 0 0 7.748 0H19a1 1 0 1 0 0-2h-.117L18 9.935a6.002 6.002 0 0 0-5-5.852V3ZM7.383 15l-.25 2h9.734l-.86-6.876A1.007 1.007 0 0 1 16 10a4 4 0 0 0-8 0 1 1 0 0 1-.008.124L7.632 13H11a1 1 0 1 1 0 2H7.383ZM12 20a2 2 0 0 1-1.732-1h3.464A2 2 0 0 1 12 20Z"/>
</svg>
)
export default Notification24