
    import * as React from 'react';

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

    type SiCoderabbitProps = 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 = '#FF570A';

    const SiCoderabbit: IconType = React.forwardRef<SVGSVGElement, SiCoderabbitProps>(function SiCoderabbit({title = 'CodeRabbit', 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='M23.9913 13.0494C23.7481 6.864 18.747 1.8204 12.5667 1.535 5.678 1.2229 0 6.7106 0 13.5252c0 2.6011.8247 5.0066 2.231 6.968.8089 1.1314 2.0724 1.8451 3.4417 1.9614-2.0143-2.284-.3013-4.1924-.3013-4.1924-.7983.386-1.1261 1.6865-1.1261 1.6865-1.512-.9305-1.1631-2.0407-1.1631-2.0407.0951-.2326.3119-.8723 1.475-.6397 2.2522-7.4173 9.6695-3.5527 9.6695-3.5527-.1163-.2327-.5023-1.5544-.5023-1.5544-4.8162-.6978-6.4445-4.113-6.4445-4.113 4.4673-1.3587 7.1847 2.3314 7.1847 2.3314-1.2424-3.0293-4.2294-1.824-5.0066-6.7935 5.1864.8618 5.937 4.9273 6.0428 5.8049.074-.1692.4864-.3965 2.1887-.296 2.6381.1532 4.737 2.8337 4.737 2.8337 0 5.4347-6.6402 4.1236-6.6402 8.2314 0 .9623 1.0468.9041 1.3957 1.3693.2855.3807.164.8036.1057.941h.6292c1.4909 0 2.9077-.6872 3.7853-1.8926 1.5279-2.0988 2.3949-4.7105 2.2891-7.5337zm-8.3953 9.4264c-1.1525-.3806-2.268-2.9817-3.6532-2.9817 1.9403 1.1683 1.1156 2.7174.957 2.9817h2.7015z' />
        </svg>
      );
    });

    export { SiCoderabbit as default, defaultColor };
  