Files
Minesweeper/src/assets/replay.tsx
T
alexis 6aca7b49cf (leaderboard): Get data from IndexedDB
Get leaderboard data from IndexedDB using localForage package
2024-02-15 19:11:31 +01:00

29 lines
512 B
TypeScript

const Replay = (props: any) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 512 512'
{...props}
>
<path
d='M320 146s24.36-12-64-12a160 160 0 10160 160'
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeMiterlimit='10'
strokeWidth='32'
/>
<path
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth='32'
d='M256 58l80 80-80 80'
/>
</svg>
);
};
export default Replay;