
    import * as React from 'react';

    import { IconType } from '../types';

    type SiDolphinProps = React.ComponentPropsWithoutRef<'svg'> & {
      /**
       * The title provides an accessible short text description to the SVG
       */
      title?: string;
      /**
       * Hex color or color name or "default" to use the default hex for each icon
       */
      color?: string;
      /**
       * The size of the Icon.
       */
      size?: string | number;
    }

    const defaultColor = '#00AAFF';

    const SiDolphin: IconType = React.forwardRef<SVGSVGElement, SiDolphinProps>(function SiDolphin({title = 'Dolphin', color = 'currentColor', size = 24, ...others }, ref) {
      if (color === 'default') {
        color = defaultColor;
      }

      return (
        <svg
          xmlns='http://www.w3.org/2000/svg'
          width={size}
          height={size}
          fill={color}
          viewBox='0 0 24 24'
          ref={ref}
          {...others}
        >
          <title>{title}</title>
          <path d='M17.195 5.308a6.61 6.61 0 0 0-.804.026c-1.223.108-1.834.504-2.135.691-.135.083-.344.1-.518.062-3.518-1.08-6.743-.62-8.363-.142-3.228.951-3.893 2.885-4.098 3.978-.07.295-.093.532-.13.67-.115.443-1.565 1.225-1.029 1.78.517.534 1.423.478 2.08.216 1.494-.592 2.652-.809 4.599-.882h.021c.181-.003.338-.034.475.091.16.149.708 1.308 1.927 2.16 1.363.953 2.772.913 2.86.768v-.002h.002l.002-.002v-.002c.036-.12-.315-.2-1.063-1.13-.646-.804-.592-1.645.036-1.49a.591.591 0 0 0 .04.007c3.447.901 5.748 2.922 5.868 2.947v.002h.002l.002-.002.002-.002v-.008c.166-.229-.958-2.957-3.871-4.586-3.297-1.843-6.389-.971-7.061-.693-.162-.272.967-1.383 3.377-1.476 5.4-.209 8.744 2.753 10.578 4.56 2.25 2.217 3.923 5.853 3.973 5.846l.002-.002h.002v-.004h.004c.12-.125-.2-2.393-.885-4.045-.881-2.126-1.966-3.69-3.525-5.148a15.572 15.572 0 0 0-2.153-1.69c-.114-.079-.254-.183-.337-.328.434-1.003 2.046-1.04 2.213-1.13l.007-.005.002-.002v-.002l.002-.004c.085-.183-.424-.966-2.107-1.023z' />
        </svg>
      );
    });

    export { SiDolphin as default, defaultColor };
  