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

export const IconVaultRadarSquare24 = 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={24}
                height={24}
                fill="none"
                viewBox="0 0 24 24"
                aria-hidden={!title}
                ref={svgRef}
                aria-labelledby={titleId}
                {...props}
            >
                {title ? <title id={titleId}>{title}</title> : null}
                <g fill={color}>
                    <path d="m18.328 11.325.672.673-.002.002c0 3.86-3.14 7-7 7C8.14 19 5 15.86 5 12s3.14-7 6.999-7c2.086 0 4.076.946 5.4 2.549L12.95 12H12v-.95l1.396-1.397A2.7 2.7 0 0 0 12 9.268 2.736 2.736 0 0 0 9.267 12a2.736 2.736 0 0 0 2.732 2.732A2.736 2.736 0 0 0 14.73 12l.672-.672.672.672A4.08 4.08 0 0 1 12 16.077 4.08 4.08 0 0 1 7.922 12 4.08 4.08 0 0 1 12 7.923c.863 0 1.68.269 2.367.76l1.127-1.128A5.67 5.67 0 0 0 12 6.343a5.66 5.66 0 0 0-5.654 5.655A5.66 5.66 0 0 0 12 17.653a5.66 5.66 0 0 0 5.654-5.655z" />
                    <path
                        fillRule="evenodd"
                        d="M0 3.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C1.52 0 2.08 0 3.2 0h17.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C24 1.52 24 2.08 24 3.2v17.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C22.48 24 21.92 24 20.8 24H3.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C0 22.48 0 21.92 0 20.8zM3.2 1h17.6c.577 0 .949 0 1.232.024.272.022.372.06.422.085a1 1 0 0 1 .437.437c.025.05.063.15.085.422C23 2.25 23 2.623 23 3.2v17.6c0 .577 0 .949-.024 1.232-.022.272-.06.372-.085.422a1 1 0 0 1-.437.437c-.05.025-.15.063-.422.085C21.75 23 21.377 23 20.8 23H3.2c-.577 0-.949 0-1.232-.024-.272-.022-.373-.06-.422-.085a1 1 0 0 1-.437-.437c-.025-.05-.063-.15-.085-.422C1 21.75 1 21.377 1 20.8V3.2c0-.577 0-.949.024-1.232.022-.272.06-.373.085-.422a1 1 0 0 1 .437-.437c.05-.025.15-.063.422-.085C2.25 1 2.623 1 3.2 1"
                        clipRule="evenodd"
                    />
                </g>
            </svg>
        );
    }
);
