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

const BackToFileSVG: React.FC<{
	className: string;
}> = (props: { className: string }): JSX.Element => (
	<div className={props.className}>
		<svg fill="none" height="22" viewBox="0 0 23 22" width="23" xmlns="http://www.w3.org/2000/svg">
			<path
				d="M1 10L8 1V6C19.953 6 21.332 15.678 21 21C20.498 18.315 20.265 14 8 14V19L1 10Z"
				stroke="var(--primary-color)"
				strokeLinecap="round"
				strokeLinejoin="round"
				strokeWidth="2"
			/>
		</svg>
	</div>
);

export default BackToFileSVG;
