The components/ui/spinner.tsx component contains an incorrect import path that causes TypeScript compilation to fail.
Current (Incorrect) Code:
import { cn } from '@coss/ui/lib/utils';
import { Loader2Icon } from 'lucide-react';
Expected (Correct) Code
import { cn } from '@/lib/utils';
import { Loader2Icon } from 'lucide-react';
Error Message
Type error: Cannot find module '@coss/ui/lib/utils' or its corresponding type declarations.
> 1 | import { cn } from '@coss/ui/lib/utils';
| ^
2 | import { Loader2Icon } from 'lucide-react';