import * as React from 'react';
const YouTubeIcon = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={33}
    height={23}
    fill='none'
    {...props}
  >
    <path
      fill='#1D4787'
      d='m17.739 22.042-6.384-.117c-2.067-.04-4.139.04-6.165-.38-3.082-.628-3.3-3.706-3.53-6.289A43.993 43.993 0 0 1 2.063 4.33c.335-2.02 1.655-3.226 3.697-3.357C12.65.496 19.587.552 26.463.774c.726.02 1.458.132 2.174.258 3.534.618 3.62 4.107 3.85 7.044.228 2.968.132 5.95-.305 8.897-.35 2.44-1.02 4.487-3.85 4.684-3.545.259-7.008.467-10.563.4 0-.015-.02-.015-.03-.015Zm-3.753-6.178c2.671-1.53 5.291-3.033 7.947-4.552-2.676-1.53-5.291-3.034-7.947-4.553v9.105Z'
    />
  </svg>
);
export default YouTubeIcon;
