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

const SvgLedgerLogo17 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 17 16"
		{...props}
	>
		<path
			fill="currentColor"
			d="M.5 10.976v3.956h6.018v-.877H1.377v-3.079H.5Zm15.123 0v3.079h-5.141v.877H16.5v-3.956h-.877Zm-9.096-6.02v6.02h3.955v-.791H7.404v-5.23h-.877ZM.5 1v3.956h.877V1.877h5.141V1H.5Zm9.982 0v.877h5.141v3.079h.877V1h-6.018Z"
		/>
	</svg>
);
export default SvgLedgerLogo17;
