Files
supabase/apps/studio/components/interfaces/Integrations/DataApi/DocViewLoading.tsx
Gildas Garcia b30db91d71 chore: cleanup UI patterns exports (#47406)
## Problem

We now export components under a subpath in ui-patterns to avoid barrel
files as they slow down every tools (from IDE to linters, etc.) and may
also affect bundles our users have to download.

## Solution

- Remove the UI patterns index file
- Fix invalid impors
2026-06-30 09:23:17 +02:00

13 lines
449 B
TypeScript

import { ShimmeringLoader } from 'ui-patterns/ShimmeringLoader'
export const DocViewLoading = () => {
return (
<div className="w-full h-full overflow-y-auto flex flex-col py-10 space-y-2">
<ShimmeringLoader className="h-2 w-24 max-w-full" />
<ShimmeringLoader className="h-2 w-96 max-w-full" />
<ShimmeringLoader className="h-2 w-96 max-w-full" />
<ShimmeringLoader className="h-2 w-96 max-w-full" />
</div>
)
}