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

export const IconHardDrive16 = 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-13zm2.75-2.25a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5zm.498-8a.75.75 0 0 0-.69.456L1.91 8h12.18l-2.148-5.044a.75.75 0 0 0-.69-.456z"
                />
            </svg>
        );
    }
);
