We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b93db1c commit 6ed2204Copy full SHA for 6ed2204
site/src/modules/apps/AppStatusStateIcon.tsx
@@ -5,7 +5,7 @@ import {
5
CircleAlertIcon,
6
CircleCheckIcon,
7
HourglassIcon,
8
- SquareIcon,
+ PauseIcon,
9
TriangleAlertIcon,
10
} from "lucide-react";
11
import type { FC } from "react";
@@ -29,7 +29,13 @@ export const AppStatusStateIcon: FC<AppStatusStateIconProps> = ({
29
switch (state) {
30
case "idle":
31
return (
32
- <SquareIcon className={cn(["text-content-secondary", className])} />
+ <PauseIcon
33
+ className={cn([
34
+ "text-content-secondary",
35
+ "fill-content-secondary",
36
+ className,
37
+ ])}
38
+ />
39
);
40
case "complete":
41
0 commit comments