mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
20 lines
643 B
TypeScript
20 lines
643 B
TypeScript
|
// ui
|
||
|
import { Loader } from "@plane/ui";
|
||
|
|
||
|
export const RecentProjectsWidgetLoader = () => (
|
||
|
<Loader className="bg-custom-background-100 rounded-xl p-6 space-y-6">
|
||
|
<Loader.Item height="17px" width="35%" />
|
||
|
{Array.from({ length: 5 }).map((_, index) => (
|
||
|
<div key={index} className="flex items-center gap-6">
|
||
|
<div className="flex-shrink-0">
|
||
|
<Loader.Item height="60px" width="60px" />
|
||
|
</div>
|
||
|
<div className="space-y-3 flex-shrink-0 w-full">
|
||
|
<Loader.Item height="17px" width="42%" />
|
||
|
<Loader.Item height="23px" width="10%" />
|
||
|
</div>
|
||
|
</div>
|
||
|
))}
|
||
|
</Loader>
|
||
|
);
|