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

export const IconBriefcase16 = 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.25 1c.966 0 1.75.784 1.75 1.75V4h1.75A2.25 2.25 0 0 1 16 6.25v6.5A2.25 2.25 0 0 1 13.75 15H2.25A2.25 2.25 0 0 1 0 12.75v-6.5A2.25 2.25 0 0 1 2.25 4H4V2.75C4 1.784 4.784 1 5.75 1zm-8 4.5a.75.75 0 0 0-.75.75v6.5c0 .414.336.75.75.75H3.5v-8zm2.75 8h6v-8H5zm7.5 0h1.25a.75.75 0 0 0 .75-.75v-6.5a.75.75 0 0 0-.75-.75H12.5zm-6.75-11a.25.25 0 0 0-.25.25V4h5V2.75a.25.25 0 0 0-.25-.25z"
                />
            </svg>
        );
    }
);
