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

export const IconInbox16 = 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}
                    d="M11.252 1a2.25 2.25 0 0 1 2.07 1.368l2.498 5.867c.119.279.18.579.18.881v3.634A2.25 2.25 0 0 1 13.75 15H2.25A2.25 2.25 0 0 1 0 12.75V9.116c0-.303.061-.602.18-.88l2.498-5.868A2.25 2.25 0 0 1 4.748 1zM1.5 12.75c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75V9.5h-3.69l-1.28 1.28A.75.75 0 0 1 9 11H7a.75.75 0 0 1-.53-.22L5.19 9.5H1.5zM4.748 2.5a.75.75 0 0 0-.69.456L1.91 8H5.5c.199 0 .39.08.53.22L7.31 9.5h1.38l1.28-1.28A.75.75 0 0 1 10.5 8h3.59l-2.148-5.044a.75.75 0 0 0-.69-.456z"
                />
            </svg>
        );
    }
);
