Feat: Change deck management UI
This commit is contained in:
parent
36439c0837
commit
3a766620b7
21 changed files with 1955 additions and 187 deletions
15
app/components/ui/spinner.tsx
Normal file
15
app/components/ui/spinner.tsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
import * as React from "react"
|
||||
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
interface SpinnerProps {
|
||||
className?: string,
|
||||
}
|
||||
|
||||
const Spinner = ({ className }: SpinnerProps) => {
|
||||
return (
|
||||
<div className={cn("inline-block w-12 h-12 border-4 border-orange-200 border-t-orange-500 rounded-full animate-spin", className)}></div>
|
||||
)}
|
||||
Spinner.displayName = "Spinner"
|
||||
|
||||
export { Spinner }
|
Loading…
Add table
Add a link
Reference in a new issue