mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
Adds support for creating documents and templates using our embed components. Support is super primitive at the moment and is being polished.
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
import { Loader } from 'lucide-react';
|
|
|
|
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>
|
|
</div>
|
|
);
|
|
};
|