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

export const IconEnd24 = 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="M21.25 3a.75.75 0 0 1 .746.673L22 3.75v16.5a.75.75 0 0 1-1.5 0V3.75l.004-.077A.75.75 0 0 1 21.25 3M10.209 5.23a.75.75 0 0 1 1.003-.07l.058.049 6.5 6.25a.75.75 0 0 1 0 1.082l-6.5 6.25-.058.05a.75.75 0 0 1-1.034-1.075l.052-.057 5.157-4.959H2.75a.75.75 0 0 1 0-1.5h12.637L10.23 6.291l-.052-.057a.75.75 0 0 1 .031-1.004"
                />
            </svg>
        );
    }
);
