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

export const IconPrinter16 = 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="M10.75 1A2.25 2.25 0 0 1 13 3.25V5h.75A2.25 2.25 0 0 1 16 7.25v3.5A2.25 2.25 0 0 1 13.75 13H12.5v.25c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25V13H2.25A2.25 2.25 0 0 1 0 10.75v-3.5A2.25 2.25 0 0 1 2.25 5H3V3.25A2.25 2.25 0 0 1 5.25 1zM5 13h6v-3H5zM2.25 6.5a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75H3.5V9.75c0-.69.56-1.25 1.25-1.25h6.5c.69 0 1.25.56 1.25 1.25v1.75h1.25a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75zm3-4a.75.75 0 0 0-.75.75V5h7V3.25a.75.75 0 0 0-.75-.75z"
                />
            </svg>
        );
    }
);
