mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* chore: fix conflicts * chore: fix conflicts * chore: pause marquee * chore: fix conflicts * chore: fix conflicts * chore: address review comments * chore: fix conflicts * chore: other bug fixes * chore: fix conflicts * chore: fix radius * chore: fix review changes * chore: fix conflicts * chore: revert other * chore: fix conflicts * chore: fix review changes * chore: fix conflicts * chore: fix review changes * chore: fix button state * chore: fix button state * chore: fix review changes * chore: fix lint * chore: fix conflicts * chore: add metadata * chore: fix things * chore: fix overwritten states * chore: fix warnings * chore: fix button state * chore: fix review changes * chore: fix review changes * chore: fix hover state * chore: fix popover * chore: fix review changes * chore: fix review changes
17 lines
619 B
TypeScript
17 lines
619 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-3 h-[14px] w-[260px] rounded-[4px]' />
|
|
<div className='mt-8 w-full space-y-2'>
|
|
<Skeleton className='h-[14px] w-[80px] rounded-[4px]' />
|
|
<Skeleton className='h-[44px] w-full rounded-[10px]' />
|
|
</div>
|
|
<Skeleton className='mt-6 h-[44px] w-full rounded-[10px]' />
|
|
<Skeleton className='mt-6 h-[14px] w-[120px] rounded-[4px]' />
|
|
</div>
|
|
)
|
|
}
|