mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
13 lines
492 B
TypeScript
13 lines
492 B
TypeScript
import { getRandomLength } from "../utils";
|
|
|
|
export const ActivitySettingsLoader = () => (
|
|
<div className="flex flex-col gap-3 animate-pulse">
|
|
{[...Array(10)].map((i) => (
|
|
<div key={i} className="relative flex items-center gap-2 h-12 border-b border-custom-border-200">
|
|
<span className="h-6 w-6 bg-custom-background-80 rounded" />
|
|
<span className={`h-6 w-${getRandomLength(["52", "72", "96"])} bg-custom-background-80 rounded`} />
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|