mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
Add parentId query param support to documents/templates folder index pages so View All correctly shows subfolders. Fix search not filtering unpinned folders on documents page and broken mt- Tailwind class on templates page.
14 lines
385 B
TypeScript
14 lines
385 B
TypeScript
import { Trans } from '@lingui/react/macro';
|
|
import { Loader } from 'lucide-react';
|
|
|
|
export const EmbedClientLoading = () => {
|
|
return (
|
|
<div className="fixed left-0 top-0 z-[9999] flex h-full w-full items-center justify-center bg-background">
|
|
<Loader className="mr-2 h-4 w-4 animate-spin" />
|
|
|
|
<span>
|
|
<Trans>Loading...</Trans>
|
|
</span>
|
|
</div>
|
|
);
|
|
};
|