Initial commit from v0

#VERCEL_SKIP
This commit is contained in:
v0
2026-01-28 14:18:55 +00:00
parent dbffe3838b
commit c8163d3354
59 changed files with 6655 additions and 0 deletions

16
components/ui/spinner.tsx Normal file
View File

@@ -0,0 +1,16 @@
import { Loader2Icon } from 'lucide-react'
import { cn } from '@/lib/utils'
function Spinner({ className, ...props }: React.ComponentProps<'svg'>) {
return (
<Loader2Icon
role="status"
aria-label="Loading"
className={cn('size-4 animate-spin', className)}
{...props}
/>
)
}
export { Spinner }