/* eslint-disable react/destructuring-assignment */
import type React from 'react';

const ReloadSvg: React.FC<{ className: string }> = (props: { className: string }): JSX.Element => (
	<div className={props.className}>
		<svg fill="none" height="15" viewBox="0 0 15 15" width="15" xmlns="http://www.w3.org/2000/svg">
			<path
				d="M4 10H1M1 10C1 10 3.5 13.5 7.25 13.5C10.702 13.5 13.5 11 13.5 8M1
					10V13.5M10.5 4.5H13.5M13.5 4.5C13.5 4.5 11 1 7.25 1C3.798 1 1 3.5 1 6.5M13.5 4.5V1"
				stroke="white"
				strokeLinecap="round"
				strokeLinejoin="round"
				strokeWidth="2"
			/>
		</svg>
	</div>
);

export default ReloadSvg;
