
    import * as React from 'react';

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

    type SiVueuseProps = 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 = '#41B883';

    const SiVueuse: IconType = React.forwardRef<SVGSVGElement, SiVueuseProps>(function SiVueuse({title = 'VueUse', 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='M.876.001v12.873C.876 19.018 5.856 24 12 24s11.124-4.982 11.124-11.126V0h-9.218v12.874c0 2.543-3.812 2.543-3.812 0V0Zm4.609 1.001h3.608v11.872C9.089 14.555 10.354 15.79 12 15.79s2.911-1.236 2.907-2.916V1.002h3.608v11.872a6.515 6.515 0 0 1-13.03 0z' />
        </svg>
      );
    });

    export { SiVueuse as default, defaultColor };
  