documenso/apps/remix/app/components/embed/embed-client-loading.tsx

12 lines
309 B
TypeScript
Raw Normal View History

import { Loader } from 'lucide-react';
2024-09-04 13:13:00 +00:00
export const EmbedClientLoading = () => {
return (
<div className="bg-background fixed left-0 top-0 z-[9999] flex h-full w-full items-center justify-center">
<Loader className="mr-2 h-4 w-4 animate-spin" />
<span>Loading...</span>
2024-09-04 13:13:00 +00:00
</div>
);
};