mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b1989bae1b
* dev: implement layout skeleton loader and helper function * chore: implemented layout loader * chore: settings loader added * chore: cycle, module, view, pages, notification and projects loader added * chore: kanban loader improvement * chore: loader utils updated
19 lines
761 B
TypeScript
19 lines
761 B
TypeScript
export const ImportExportSettingsLoader = () => (
|
|
<div className="divide-y-[0.5px] divide-custom-border-200 animate-pulse">
|
|
{[...Array(2)].map(() => (
|
|
<div className="flex items-center justify-between gap-2 px-4 py-3">
|
|
<div className="flex flex-col gap-1.5">
|
|
<div className="flex items-center gap-2">
|
|
<span className="h-5 w-16 bg-custom-background-80 rounded" />
|
|
<span className="h-5 w-16 bg-custom-background-80 rounded" />
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<span className="h-4 w-28 bg-custom-background-80 rounded" />
|
|
<span className="h-4 w-28 bg-custom-background-80 rounded" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|