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

const Notification20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M10.75 2.5a.75.75 0 0 0-1.5 0v.974a4.918 4.918 0 0 0-4.166 4.81l-.41 3.278a.796.796 0 0 0-.003.022l-.333 2.666h-.171a.75.75 0 0 0 0 1.5h2.67a3.251 3.251 0 0 0 6.326 0h2.67a.75.75 0 0 0 0-1.5h-.17l-.747-5.965a4.918 4.918 0 0 0-4.166-4.811V2.5Zm-4.671 9.917-.23 1.833h8.301l-.728-5.824a.742.742 0 0 1-.005-.093 3.417 3.417 0 0 0-6.834 0 .75.75 0 0 1-.005.093l-.312 2.49h2.9a.75.75 0 0 1 0 1.5H6.08ZM10 16.75a1.75 1.75 0 0 1-1.582-1h3.164c-.281.591-.884 1-1.582 1Z"/>
</svg>
)
export default Notification20