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

export const IconGuideLink16 = 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}
                <g fill={color}>
                    <path d="M12.75 1a.75.75 0 0 0 0 1.5h.69l-1.97 1.97a.75.75 0 0 0 1.06 1.06l1.97-1.97v.69a.75.75 0 0 0 1.5 0v-2.5a.75.75 0 0 0-.75-.75z" />
                    <path
                        fillRule="evenodd"
                        d="M1.25 2C.56 2 0 2.56 0 3.25v8.5C0 12.44.56 13 1.25 13H5c.896 0 1.475.205 1.809.448.317.23.441.51.441.802a.751.751 0 1 0 1.5 0c0-.292.124-.572.441-.802.334-.243.913-.448 1.809-.448h3.75c.69 0 1.25-.56 1.25-1.25v-4.5a.75.75 0 0 0-1.5 0v4.25H11c-.878 0-1.64.158-2.25.467v-6.55c0-.788.376-1.42 1.12-1.722a.75.75 0 0 0-.561-1.39 3.3 3.3 0 0 0-1.31.941A3 3 0 0 0 7.773 3C7.106 2.354 6.154 2 5 2zm6 3.417c0-.553-.187-1.015-.522-1.34C6.394 3.753 5.846 3.5 5 3.5H1.5v8H5c.878 0 1.64.158 2.25.467z"
                        clipRule="evenodd"
                    />
                </g>
            </svg>
        );
    }
);
