
    import * as React from 'react';

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

    type SiPaybackProps = 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 = '#003EB0';

    const SiPayback: IconType = React.forwardRef<SVGSVGElement, SiPaybackProps>(function SiPayback({title = 'PAYBACK', 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='M16.1796 11.4765c-2.0161 0-3.6576-1.6401-3.6576-3.6548 0-2.0148 1.6401-3.6562 3.6576-3.6562s3.6548 1.64 3.6548 3.6562c0 2.016-1.64 3.6548-3.6548 3.6548zm-.0014 8.3595c-2.0161 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6562 1.6401 3.6562 3.6562 0 2.0161-1.6401 3.6562-3.6562 3.6562zm0-6.5877c-1.6168 0-2.9315 1.3148-2.9315 2.9315 0 1.6168 1.3147 2.9315 2.9315 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM7.8187 19.836c-2.0162 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.6401 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6168 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zm0-1.7718c-2.0162 0-3.6562-1.6401-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.64 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6167 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3148 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM3.0014 0C1.3462 0 0 1.3465 0 3.0003V21c0 1.6537 1.3462 3 3.0014 3h17.994c1.6551 0 3.003-1.3463 3.003-3V3.0002C23.9984 1.3465 22.6519 0 20.9954 0Z' />
        </svg>
      );
    });

    export { SiPayback as default, defaultColor };
  