mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-04-25 04:29:56 -04:00
14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
import { BorderBeam } from '@shadcn/ui/border-beam';
|
|
import Ripple from '@shadcn/ui/ripple';
|
|
import { LoadingIcon } from './lotties';
|
|
|
|
export function Loading() {
|
|
return (
|
|
<div className='relative flex size-full items-end justify-center overflow-hidden'>
|
|
<BorderBeam />
|
|
<Ripple />
|
|
<LoadingIcon className='my-24 w-64' />
|
|
</div>
|
|
);
|
|
}
|