mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
17 lines
643 B
TypeScript
17 lines
643 B
TypeScript
import { Skeleton } from '@/components/emcn'
|
|
|
|
export default function SSOLoading() {
|
|
return (
|
|
<div className='flex flex-col items-center'>
|
|
<Skeleton className='h-[38px] w-[120px] rounded-[4px]' />
|
|
<Skeleton className='mt-[12px] h-[14px] w-[260px] rounded-[4px]' />
|
|
<div className='mt-[32px] w-full space-y-[8px]'>
|
|
<Skeleton className='h-[14px] w-[80px] rounded-[4px]' />
|
|
<Skeleton className='h-[44px] w-full rounded-[10px]' />
|
|
</div>
|
|
<Skeleton className='mt-[24px] h-[44px] w-full rounded-[10px]' />
|
|
<Skeleton className='mt-[24px] h-[14px] w-[120px] rounded-[4px]' />
|
|
</div>
|
|
)
|
|
}
|