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

export const IconClipboardCopy24 = 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={24}
                height={24}
                fill="none"
                viewBox="0 0 24 24"
                aria-hidden={!title}
                ref={svgRef}
                aria-labelledby={titleId}
                {...props}
            >
                {title ? <title id={titleId}>{title}</title> : null}
                <path
                    fill={color}
                    d="M15.25 1c.966 0 1.75.784 1.75 1.75V3h1.25A2.75 2.75 0 0 1 21 5.75v4.5a.75.75 0 0 1-1.5 0v-4.5c0-.69-.56-1.25-1.25-1.25h-1.268A1.75 1.75 0 0 1 15.25 6h-6.5a1.75 1.75 0 0 1-1.732-1.5H5.75c-.69 0-1.25.56-1.25 1.25v14.5c0 .69.56 1.25 1.25 1.25h12.5c.69 0 1.25-.56 1.25-1.25v-2.5a.75.75 0 0 1 1.5 0v2.5A2.75 2.75 0 0 1 18.25 23H5.75A2.75 2.75 0 0 1 3 20.25V5.75A2.75 2.75 0 0 1 5.75 3H7v-.25C7 1.784 7.784 1 8.75 1zm-3 16a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5zm4.49-6.8a.75.75 0 0 1 1.02 1.1l-2.1 1.95H22a.75.75 0 0 1 0 1.5h-6.34l2.1 1.95a.75.75 0 0 1-1.02 1.1l-3.5-3.25-.05-.051a.75.75 0 0 1-.19-.482v-.034a.75.75 0 0 1 .203-.496l.024-.025zM10.25 13a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1 0-1.5zm2-4a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5zm-3.5-6.5a.25.25 0 0 0-.25.25v1.5c0 .138.112.25.25.25h6.5a.25.25 0 0 0 .25-.25v-1.5a.25.25 0 0 0-.25-.25z"
                />
            </svg>
        );
    }
);
