import * as React from 'react';
const NotificationIcon = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={25}
    height={25}
    fill='none'
    {...props}
  >
    <path
      fill='#1D4787'
      fillRule='evenodd'
      d='M19.707 9.296c0 1.256.332 1.997 1.063 2.85.553.628.73 1.435.73 2.31 0 .874-.287 1.704-.863 2.378a4.537 4.537 0 0 1-2.9 1.413c-1.571.134-3.143.247-4.736.247-1.595 0-3.166-.068-4.737-.247a4.532 4.532 0 0 1-2.9-1.413 3.616 3.616 0 0 1-.864-2.378c0-.875.178-1.682.73-2.31.754-.854 1.064-1.594 1.064-2.85V8.87c0-1.682.42-2.781 1.283-3.858C8.861 3.442 10.919 2.5 12.956 2.5h.09c2.08 0 4.204.987 5.466 2.625.82 1.054 1.195 2.108 1.195 3.745v.426ZM9.574 20.561c0-.504.462-.735.89-.833.5-.106 3.546-.106 4.046 0 .427.098.89.33.89.833-.026.48-.307.904-.696 1.174a3.635 3.635 0 0 1-1.713.731 3.795 3.795 0 0 1-1.008 0 3.618 3.618 0 0 1-1.713-.732c-.39-.269-.671-.694-.696-1.173Z'
      clipRule='evenodd'
    />
    <path
      fill='#04AD75'
      stroke='#FCFBFD'
      strokeWidth={1.5}
      d='M22.171 5.562c0 2.386-1.922 4.313-4.286 4.313-2.363 0-4.285-1.927-4.285-4.313 0-2.385 1.922-4.312 4.285-4.312 2.364 0 4.286 1.927 4.286 4.312Z'
    />
  </svg>
);
export default NotificationIcon;
