mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
18 lines
359 B
TypeScript
18 lines
359 B
TypeScript
import { CircleNotch } from '@phosphor-icons/react'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
interface SpinnerProps {
|
|
size?: number
|
|
className?: string
|
|
}
|
|
|
|
export function Spinner({ size = 24, className }: SpinnerProps) {
|
|
return (
|
|
<CircleNotch
|
|
size={size}
|
|
weight="bold"
|
|
className={cn('animate-spin text-primary', className)}
|
|
/>
|
|
)
|
|
}
|