/* eslint-disable react/no-unused-prop-types */
/* eslint-disable @typescript-eslint/no-unused-vars */
import type React from 'react';

const CheckMarkSvg: React.FC<{ class: string }> = (props: { class: string }): JSX.Element => (
	<svg fill="none" height="5" viewBox="0 0 6 5" width="6" xmlns="http://www.w3.org/2000/svg">
		<path
			d="M5.06735 0.15941C5.17103 0.0560331 5.309 -0.0011178 5.45216 1.65693e-05C5.59531 0.00115094 5.73244 0.0604821 5.83462 0.16549C5.93679 0.270498 5.99602 0.41297 5.99981 0.562843C6.00359 0.712715 5.95163 0.858266 5.8549 0.968782L2.91814 4.81523C2.86764 4.87219 2.80669 4.9179 2.73894 4.94963C2.67119 4.98137 2.59802 4.99846 2.52381 4.9999C2.44961 5.00134 2.37589 4.98709 2.30706 4.95801C2.23823 4.92893 2.17571 4.88561 2.12323 4.83064L0.175696 2.79103C0.121461 2.7381 0.0779598 2.67427 0.0477885 2.60336C0.0176172 2.53244 0.00139367 2.45589 8.59092e-05 2.37826C-0.00122186 2.30064 0.012413 2.22353 0.0401768 2.15155C0.0679405 2.07956 0.109265 2.01417 0.161684 1.95927C0.214103 1.90437 0.276543 1.86109 0.345279 1.83202C0.414016 1.80294 0.48764 1.78866 0.56176 1.79003C0.635881 1.7914 0.708978 1.80839 0.776692 1.83999C0.844406 1.87159 0.90535 1.91715 0.955887 1.97395L2.49713 3.58729L5.05336 0.176369C5.05796 0.170434 5.06288 0.164772 5.06808 0.15941H5.06735Z"
			fill="var(--primary-color)"
		/>
	</svg>
);

export default CheckMarkSvg;
