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

export const IconCornerLeftDown24 = 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.25 2.5a.75.75 0 0 1 0 1.5h-7c-.847 0-1.669.357-2.282 1.009A3.64 3.64 0 0 0 10 7.5v10.878l3.957-4.146a.75.75 0 0 1 1.085 1.036l-5.25 5.5a.75.75 0 0 1-1.085 0l-5.25-5.5a.75.75 0 0 1 1.086-1.036L8.5 18.378V7.5c0-1.312.49-2.579 1.375-3.52A4.63 4.63 0 0 1 13.25 2.5z"
                />
            </svg>
        );
    }
);
