plane/web/components/dashboard/widgets/loaders/issues-by-priority.tsx

16 lines
537 B
TypeScript
Raw Normal View History

// ui
import { Loader } from "@plane/ui";
export const IssuesByPriorityWidgetLoader = () => (
2024-01-30 06:46:21 +00:00
<Loader className="bg-neutral-component-surface-light rounded-xl p-6">
<Loader.Item height="17px" width="35%" />
<div className="flex items-center gap-1 h-full">
<Loader.Item height="119px" width="14%" />
<Loader.Item height="119px" width="26%" />
<Loader.Item height="119px" width="36%" />
<Loader.Item height="119px" width="18%" />
<Loader.Item height="119px" width="6%" />
</div>
</Loader>
);