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

export const IconCompass24 = 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}
                <path
                    fill={color}
                    d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1m0 1.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19m4.003 4.549a.75.75 0 0 1 .948.948l-2.119 6.36a.75.75 0 0 1-.475.475l-6.36 2.12a.75.75 0 0 1-.948-.95l2.12-6.36a.75.75 0 0 1 .474-.473zm-5.53 3.424-1.527 4.58 4.581-1.526 1.527-4.58z"
                />
            </svg>
        );
    }
);
