2024-01-18 10:19:54 +00:00
|
|
|
// ui
|
|
|
|
import { Loader } from "@plane/ui";
|
|
|
|
|
|
|
|
export const AssignedIssuesWidgetLoader = () => (
|
2024-01-30 06:46:21 +00:00
|
|
|
<Loader className="bg-neutral-component-surface-light p-6 rounded-xl">
|
2024-01-18 10:19:54 +00:00
|
|
|
<div className="flex items-center justify-between gap-2">
|
|
|
|
<Loader.Item height="17px" width="35%" />
|
|
|
|
<Loader.Item height="17px" width="10%" />
|
|
|
|
</div>
|
|
|
|
<div className="mt-6 space-y-7">
|
|
|
|
<Loader.Item height="29px" />
|
|
|
|
<Loader.Item height="17px" width="10%" />
|
|
|
|
</div>
|
|
|
|
<div className="mt-11 space-y-10">
|
|
|
|
<Loader.Item height="11px" width="35%" />
|
|
|
|
<Loader.Item height="11px" width="45%" />
|
|
|
|
<Loader.Item height="11px" width="55%" />
|
|
|
|
<Loader.Item height="11px" width="40%" />
|
|
|
|
<Loader.Item height="11px" width="60%" />
|
|
|
|
</div>
|
|
|
|
</Loader>
|
|
|
|
);
|