Add ability to delete all leaderboard

This commit is contained in:
2024-02-19 08:46:05 +01:00
parent 9426b8499c
commit ffa6468b70
5 changed files with 161 additions and 22 deletions
+20
View File
@@ -0,0 +1,20 @@
const Size = (props: any) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 512 512'
{...props}
>
<path
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth='32'
d='M304 96h112v112M405.77 106.2L111.98 400.02M208 416H96V304'
/>
</svg>
);
};
export default Size;