
    import * as React from 'react';

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

    type SiDash0Props = 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 = '#EA3D3B';

    const SiDash0: IconType = React.forwardRef<SVGSVGElement, SiDash0Props>(function SiDash0({title = 'Dash0', 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='M0 4.421c4.883 0 8.842 3.393 8.842 7.579S4.883 19.579 0 19.579zm16.421 0C20.608 4.421 24 7.814 24 12s-3.392 7.579-7.579 7.579S8.842 16.186 8.842 12s3.393-7.579 7.579-7.579' />
        </svg>
      );
    });

    export { SiDash0 as default, defaultColor };
  