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

const SvgLockLocked16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<g clipPath="url(#lock_locked_16_svg__a)">
			<path
				fill="currentColor"
				d="M4.45 13.88h6.665c1.094 0 1.655-.568 1.655-1.764V7.037c0-1.06-.452-1.627-1.34-1.73V3.736c0-2.44-1.648-3.841-3.65-3.841-2.004 0-3.644 1.4-3.644 3.841v1.573c-.896.102-1.347.67-1.347 1.73v5.078c0 1.197.56 1.764 1.661 1.764ZM5.763 3.653c0-1.38.895-2.187 2.016-2.187s2.03.806 2.03 2.187l-.006 1.634H5.756l.007-1.634Zm-.834 8.662c-.267 0-.417-.15-.417-.459V7.304c0-.301.15-.451.417-.451h5.708c.266 0 .41.15.41.45v4.553c0 .308-.144.459-.41.459H4.929Z"
			/>
		</g>
		<defs>
			<clipPath id="lock_locked_16_svg__a">
				<path fill="#fff" d="M0 0h16v16H0z" />
			</clipPath>
		</defs>
	</svg>
);
export default SvgLockLocked16;
