💄 (leaderboard): Ability to replay a game or change game settings

This commit is contained in:
2024-02-14 22:19:55 +01:00
parent 79962f45dc
commit 6d22409763
10 changed files with 366 additions and 96 deletions
+28
View File
@@ -0,0 +1,28 @@
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'
stroke-linecap='round'
stroke-miterlimit='10'
stroke-width='32'
/>
<path
fill='none'
stroke='currentColor'
stroke-linecap='round'
stroke-linejoin='round'
stroke-width='32'
d='M256 58l80 80-80 80'
/>
</svg>
);
};
export default Replay;