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

export const IconJumpLink24 = 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="M20 19a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1 0-1.5zM13.25 4A4.75 4.75 0 0 1 18 8.75v5.774l2.488-2.322a.75.75 0 0 1 1.024 1.096l-3.75 3.5a.75.75 0 0 1-1.024 0l-3.75-3.5a.75.75 0 0 1 1.024-1.096l2.488 2.322V8.75a3.25 3.25 0 0 0-3.25-3.25h-2a.75.75 0 0 1 0-1.5zm-3 10a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5zm0-5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5zm-4-5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5z"
                />
            </svg>
        );
    }
);
