feat: add single player mode

This commit is contained in:
David Nguyen
2023-09-20 13:48:30 +10:00
parent e6e8de62c8
commit 4b8aa3298b
85 changed files with 2610 additions and 438 deletions

View File

@ -1,12 +1,13 @@
import type { LucideIcon } from 'lucide-react/dist/lucide-react';
import type { LucideIcon, LucideProps } from 'lucide-react/dist/lucide-react';
export const SignatureIcon: LucideIcon = ({
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
export const SignatureIcon = (({
size = 24,
color = 'currentColor',
strokeWidth = 1.33,
absoluteStrokeWidth,
...props
}) => {
}: LucideProps) => {
return (
<svg
width={size}
@ -25,4 +26,4 @@ export const SignatureIcon: LucideIcon = ({
/>
</svg>
);
};
}) as LucideIcon;