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

export const IconCpu16 = 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="M9.75.05a.7.7 0 0 1 .7.7V2h1.3A2.25 2.25 0 0 1 14 4.25v1.3h1.25a.7.7 0 0 1 0 1.4H14v2.1h1.25a.7.7 0 0 1 0 1.4H14v1.3A2.25 2.25 0 0 1 11.75 14h-1.3v1.25a.7.7 0 0 1-1.4 0V14h-2.1v1.25a.7.7 0 0 1-1.4 0V14h-1.3A2.25 2.25 0 0 1 2 11.75v-1.3H.75a.7.7 0 0 1 0-1.4H2v-2.1H.75a.7.7 0 0 1 0-1.4H2v-1.3A2.25 2.25 0 0 1 4.25 2h1.3V.75a.7.7 0 0 1 1.4 0V2h2.1V.75a.7.7 0 0 1 .7-.7M4.25 3.5a.75.75 0 0 0-.75.75v7.5c0 .414.336.75.75.75h7.5a.75.75 0 0 0 .75-.75v-7.5a.75.75 0 0 0-.75-.75zM9.75 5c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25h-3.5C5.56 11 5 10.44 5 9.75v-3.5C5 5.56 5.56 5 6.25 5zM6.5 9.5h3v-3h-3z"
                />
            </svg>
        );
    }
);
