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 4fd0312 commit ec779a6Copy full SHA for ec779a6
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,7 @@ export const AppStatusStateIcon: FC<AppStatusStateIconProps> = ({
29
switch (state) {
30
case "idle":
31
return (
32
- <SquareIcon className={cn(["text-content-secondary", className])} />
+ <PauseIcon className={cn(["text-content-secondary", className])} />
33
);
34
case "complete":
35
0 commit comments