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

const SvgChangeEpoch16 = (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(#change_epoch_16_svg__a)">
			<path
				fill="currentColor"
				fillRule="evenodd"
				d="M3.555 1.348A8 8 0 0 1 8 0a8.024 8.024 0 0 1 8 8A8 8 0 1 1 3.555 1.348Zm1.112 11.64A6 6 0 0 0 8 14a6.018 6.018 0 0 0 6-6 6 6 0 1 0-9.333 4.989ZM9 7h2.5a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1V4.5a1 1 0 0 1 2 0V7Z"
				clipRule="evenodd"
			/>
		</g>
		<defs>
			<clipPath id="change_epoch_16_svg__a">
				<path fill="#fff" d="M0 0h16v16H0z" />
			</clipPath>
		</defs>
	</svg>
);
export default SvgChangeEpoch16;
