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

export const IconLineChartUp16 = 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}
                <path
                    fill={color}
                    fillRule="evenodd"
                    d="M13.75 1A2.25 2.25 0 0 1 16 3.25v9.5A2.25 2.25 0 0 1 13.75 15H2.25A2.25 2.25 0 0 1 0 12.75v-9.5A2.25 2.25 0 0 1 2.25 1zM2.25 2.5a.75.75 0 0 0-.75.75v7.075l4.11-2.467.024-.012a.75.75 0 0 1 .572-.068L9.08 8.6l1.328-2.988-.9.406a.75.75 0 0 1-.614-1.369l2.579-1.16a.75.75 0 0 1 .99.376l1.162 2.58a.75.75 0 0 1-1.368.615l-.428-.952-1.638 3.687a.75.75 0 0 1-.908.423L6.106 9.31 1.5 12.074v.676c0 .414.336.75.75.75H5V13a.75.75 0 0 1 1.5 0v.5h3V13a.75.75 0 0 1 1.5 0v.5h2.75a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75z"
                    clipRule="evenodd"
                />
            </svg>
        );
    }
);
