
    import * as React from 'react';

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

    type SiContensisProps = 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 = '#37BFA7';

    const SiContensis: IconType = React.forwardRef<SVGSVGElement, SiContensisProps>(function SiContensis({title = 'Contensis', 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='M14.92 0q-.131.009-.22.155c-2.795 4.728-6.555 7.99-6.792 10.154-.221 2.02.51 3.689 1.71 4.726a30 30 0 0 0 1.355-1.83c-.022-.417-.182-3.68.164-4.6.197 1.418.606 2.726.758 3.182a43 43 0 0 0 1.029-1.755c-.031-.83-.116-3.755.174-4.424.077.965.434 2.194.65 2.863.287-.571.444-.918.447-.926l1.016-2.256-.268 2.453c-.001.013-.09.823-.306 2.055.594-.483 1.539-1.297 1.998-1.935.04.77-1.667 2.833-2.322 3.597a42 42 0 0 1-.403 1.698c.569-.316 1.872-1.073 2.6-1.762-.11.785-2.422 2.783-3.033 3.299a30 30 0 0 1-.502 1.492c1.404-.08 2.878-.787 4.113-2.3C20.548 9.642 16.235-.09 14.92 0m-2.928 2.8c-.578 0-1.14.14-1.582.392L3.84 6.936c-.92.524-1.59 1.669-1.59 2.719v7.49c0 1.05.67 2.194 1.59 2.718l6.57 3.744c.443.253 1.008.392 1.59.392.58 0 1.146-.139 1.59-.392l6.57-3.744c.92-.524 1.59-1.67 1.59-2.72v-7.49c0-1.05-.67-2.191-1.59-2.717l-1.353-.774c.134.62.235 1.234.298 1.823a52 52 0 0 1 .135 1.67v7.49c0 .16-.194.49-.334.572l-6.572 3.743a.8.8 0 0 1-.334.06.8.8 0 0 1-.334-.06l-6.57-3.743c-.141-.08-.336-.412-.336-.572v-7.49c0-.16.195-.493.336-.573l3.648-2.08c.425-.58.913-1.194 1.436-1.855a92 92 0 0 0 1.812-2.348m1.79 7.302c-1.254 2.309-3.458 5.87-6.145 8.125.044.019.393.228 2.703 1.54 1.91-2.788 2.947-7.015 3.443-9.665M7.63 18.226v.002l.002.002.002-.004h-.002z' />
        </svg>
      );
    });

    export { SiContensis as default, defaultColor };
  