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

const SvgRefresh16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<path
			fill="currentColor"
			d="M7.84 15.127c3.681 0 6.703-3.028 6.703-6.71 0-3.675-3.028-6.703-6.704-6.703-3.681 0-6.703 3.028-6.703 6.703 0 3.682 3.028 6.71 6.703 6.71Zm0-1.67a5.021 5.021 0 0 1-5.028-5.04 5.016 5.016 0 0 1 5.027-5.034 5.025 5.025 0 0 1 5.034 5.034c0 2.793-2.24 5.04-5.034 5.04Zm2.786-4.754c0-1.441-1.117-2.628-2.431-2.736h-.14l.248-.267a.496.496 0 0 0 .133-.336.478.478 0 0 0-.501-.476.531.531 0 0 0-.388.177L6.424 6.202a.54.54 0 0 0 0 .736L7.56 8.074a.513.513 0 0 0 .362.153c.286 0 .508-.19.508-.502a.478.478 0 0 0-.09-.286l-.342-.342c.064.006.127.019.19.025.756.064 1.34.762 1.34 1.587 0 .94-.75 1.695-1.689 1.695-.94 0-1.688-.756-1.688-1.695a.546.546 0 0 0-.552-.54.545.545 0 0 0-.546.54c0 1.543 1.244 2.8 2.786 2.8a2.798 2.798 0 0 0 2.787-2.806Z"
		/>
	</svg>
);
export default SvgRefresh16;
