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

export const IconCaret24 = 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}
                    fillRule="evenodd"
                    d="M16.707 14.232a.75.75 0 0 1 1.06-.025c.299.286.31.761.025 1.06l-5.25 5.5A.75.75 0 0 1 12 21a.75.75 0 0 1-.543-.232l-5.25-5.5a.75.75 0 0 1 1.085-1.036L12 19.164zM12 3c.204 0 .4.085.542.232l5.25 5.5c.285.3.274.775-.025 1.061a.75.75 0 0 1-1.06-.025L12 4.836 7.292 9.768a.75.75 0 0 1-1.085-1.036l5.25-5.5A.75.75 0 0 1 12 3"
                    clipRule="evenodd"
                />
            </svg>
        );
    }
);
