// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
import { SVGProps } from 'react';

const SvgCopyArchiveDoNotUse16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<path
			stroke="currentColor"
			strokeLinecap="round"
			strokeLinejoin="round"
			strokeWidth={1.5}
			d="M5.333 4h-.712c-.711 0-1.288.576-1.288 1.287v6.759c0 .711.577 1.287 1.288 1.287h6.758c.711 0 1.288-.576 1.288-1.287V5.287c0-.71-.577-1.287-1.288-1.287h-.712"
		/>
		<path
			stroke="currentColor"
			strokeLinecap="round"
			strokeLinejoin="round"
			strokeWidth={1.5}
			d="M5.333 3.667a1 1 0 0 1 1-1h3.334a1 1 0 0 1 1 1v.666a1 1 0 0 1-1 1H6.333a1 1 0 0 1-1-1v-.666Z"
		/>
	</svg>
);
export default SvgCopyArchiveDoNotUse16;
