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

const SvgHistory32 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 32 32"
		{...props}
	>
		<path
			fill="currentColor"
			fillRule="evenodd"
			d="M7.083 16a8.917 8.917 0 1 1 17.834 0 8.917 8.917 0 0 1-17.834 0ZM16 5.583C10.247 5.583 5.583 10.247 5.583 16S10.247 26.417 16 26.417 26.417 21.753 26.417 16 21.753 5.583 16 5.583Zm.75 5.084a.75.75 0 1 0-1.5 0v5.643l.22.22 2.666 2.667a.75.75 0 1 0 1.061-1.06l-2.447-2.448v-5.022Z"
			clipRule="evenodd"
		/>
	</svg>
);
export default SvgHistory32;
