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
17 lines
716 B
TypeScript
17 lines
716 B
TypeScript
export const NotificationsLoader = () => (
|
|
<div className="divide-y divide-custom-border-100 animate-pulse overflow-hidden">
|
|
{[...Array(3)].map(() => (
|
|
<div className="flex w-full items-center gap-4 p-3">
|
|
<span className="min-h-12 min-w-12 bg-custom-background-80 rounded-full" />
|
|
<div className="flex flex-col gap-2.5 w-full">
|
|
<span className="h-5 w-36 bg-custom-background-80 rounded" />
|
|
<div className="flex items-center justify-between gap-2 w-full">
|
|
<span className="h-5 w-28 bg-custom-background-80 rounded" />
|
|
<span className="h-5 w-16 bg-custom-background-80 rounded" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|