import * as React from 'react';
const InstagramIcon = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={30}
    height={29}
    fill='none'
    {...props}
  >
    <path
      fill='#1D4787'
      fillRule='evenodd'
      d='M1.342 14.34c0-5.488 0-8.232 1.352-10.208a8.017 8.017 0 0 1 2.3-2.222C7.037.603 9.875.603 15.551.603c5.677 0 8.515 0 10.56 1.307a8.019 8.019 0 0 1 2.298 2.222c1.353 1.976 1.353 4.72 1.353 10.207 0 5.488 0 8.231-1.353 10.208a8.018 8.018 0 0 1-2.299 2.222c-2.044 1.307-4.882 1.307-10.559 1.307-5.676 0-8.514 0-10.559-1.307a8.016 8.016 0 0 1-2.299-2.222c-1.352-1.977-1.352-4.72-1.352-10.208Zm21.567 0c0 3.927-3.294 7.111-7.357 7.111-4.063 0-7.357-3.184-7.357-7.112 0-3.927 3.294-7.111 7.357-7.111 4.063 0 7.357 3.184 7.357 7.111Zm-7.357 4.705c2.689 0 4.868-2.107 4.868-4.706s-2.18-4.705-4.868-4.705-4.868 2.106-4.868 4.705c0 2.6 2.18 4.706 4.868 4.706ZM23.2 8.54c.955 0 1.729-.748 1.729-1.67 0-.924-.774-1.672-1.729-1.672-.954 0-1.728.748-1.728 1.671s.774 1.671 1.728 1.671Z'
      clipRule='evenodd'
    />
  </svg>
);
export default InstagramIcon;
