import { forwardRef, useMemo } from 'react';
import { IconProps } from './types';

export const IconBridgecrewColor16 = forwardRef<SVGSVGElement, IconProps>(
    ({ color = 'currentColor', title, ...props }, svgRef) => {
        const titleId = useMemo(
            () =>
                title
                    ? 'title-' + Math.random().toString(36).substr(2, 9)
                    : undefined,
            [title]
        );
        return (
            <svg
                xmlns="http://www.w3.org/2000/svg"
                width={16}
                height={16}
                fill="none"
                viewBox="0 0 16 16"
                aria-hidden={!title}
                ref={svgRef}
                aria-labelledby={titleId}
                {...props}
            >
                {title ? <title id={titleId}>{title}</title> : null}
                <path
                    fill="#662ffe"
                    d="m6.694 3.281.092-.113c.78-.967 1.755-1.13 2.794-.43.35.236.68.525.95.844 1.23 1.456 2.437 2.93 3.65 4.398.349.423.651.872.776 1.411.143.62-.062 1.124-.557 1.521-.554.445-1.217.643-1.915.762-2.097.358-4.193.724-6.29 1.08-.55.094-1.101.167-1.653.24-.13.016-.264-.005-.396-.009.586-.066 1.063-.355 1.495-.713.61-.506 1.207-1.028 1.805-1.548.326-.283.642-.576.962-.865 1.006.902 2.434.945 3.192.12l-.678-.67c-.715.409-1.278.38-1.731-.09.178-.154.36-.305.534-.463.434-.39.91-.745 1.182-1.273l.686-.712-.297-.224c.1-.363.008-.7-.18-1.011-.35-.576-.921-.887-1.536-1.132-.958-.381-1.923-.75-2.885-1.124z"
                />
                <path
                    fill="#062982"
                    d="M2.776 12.223c-.34-.453-.487-.977-.586-1.514-.383-2.076-.77-4.152-1.131-6.232a4.2 4.2 0 0 1-.027-1.219c.097-.797.635-1.255 1.467-1.258.403-.002.83.03 1.204.158.992.341 1.962.744 2.94 1.122-.015.046-.025.094-.047.136-.314.592-.636 1.18-.942 1.775-.185.358-.346.726-.517 1.09l-.616.26V4.562H3.493v.253c0 1.066-.016 2.132.009 3.197.01.403.113.804.174 1.206-.032.021-.082.036-.095.065-.252.562-.51 1.122-.745 1.69-.168.405-.098.83-.06 1.25"
                />
                <path
                    fill="#01147d"
                    d="M5.137 6.28c.171-.363.332-.731.517-1.089.306-.595.628-1.183.942-1.775.022-.042.032-.09.047-.136l.05.001c.963.374 1.927.743 2.886 1.124.614.245 1.186.555 1.535 1.132.188.31.28.648.18 1.011q-.067-.032-.132-.066c-1.113-.577-2.478-.182-3.074.89-.06.11-.112.224-.175.353-.26-.673-.714-1.137-1.396-1.382-.453-.163-.915-.14-1.38-.061zM2.776 12.223c-.038-.42-.108-.845.06-1.25.235-.568.493-1.128.745-1.69.013-.03.063-.044.095-.065a2.29 2.29 0 0 0 3.42.923 2.25 2.25 0 0 0 .802-1.046l.51.764c-.321.289-.637.582-.963.865-.598.52-1.194 1.042-1.805 1.548-.432.358-.909.647-1.495.713-.603-.009-1.076-.237-1.369-.762"
                />
                <path
                    fill="#02157e"
                    d="M9.19 9.219a1.15 1.15 0 0 1-.115-1.55 1.28 1.28 0 0 1 1.606-.335c.079.043.15.1.226.15-.274.527-.75.882-1.183 1.272-.175.158-.356.31-.534.463M5.725 7.187c.703-.014 1.266.503 1.279 1.174S6.473 9.586 5.786 9.6c-.695.013-1.282-.535-1.288-1.205-.006-.648.548-1.193 1.227-1.208"
                />
            </svg>
        );
    }
);
