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

const SvgAccount24 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 24 24"
		{...props}
	>
		<path
			stroke="currentColor"
			strokeLinecap="round"
			strokeLinejoin="round"
			strokeWidth={1.5}
			d="M18.4 19.4c0-1.116 0-1.675-.136-2.129a3.175 3.175 0 0 0-2.1-2.133C15.717 15 15.168 15 14.07 15H10.13c-1.099 0-1.648 0-2.095.138a3.175 3.175 0 0 0-2.1 2.133C5.8 17.725 5.8 18.283 5.8 19.4m9.844-10.8c0 1.988-1.587 3.6-3.544 3.6s-3.544-1.612-3.544-3.6S10.143 5 12.1 5s3.544 1.612 3.544 3.6Z"
		/>
	</svg>
);
export default SvgAccount24;
