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

export const IconExitPoint24 = 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="M10 5c1.36 0 2.632.389 3.707 1.062a.75.75 0 1 1-.796 1.271 5.5 5.5 0 1 0 0 9.334.75.75 0 0 1 .796 1.271A7 7 0 1 1 10 5m6.205 2.235a.75.75 0 0 1 1.06-.03l4.498 4.248a.75.75 0 0 1 0 1.093l-4.498 4.249a.75.75 0 1 1-1.03-1.09l3.128-2.955H9.75a.75.75 0 0 1 0-1.5h9.613l-3.128-2.955a.75.75 0 0 1-.03-1.06"
                />
            </svg>
        );
    }
);
