8000 chore: use pause icon for app idle state (#18546) · coder/coder@6ed2204 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6ed2204

Browse files
authored
chore: use pause icon for app idle state (#18546)
1 parent b93db1c commit 6ed2204

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

site/src/modules/apps/AppStatusStateIcon.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
CircleAlertIcon,
66
CircleCheckIcon,
77
HourglassIcon,
8-
SquareIcon,
8+
PauseIcon,
99
TriangleAlertIcon,
1010
} from "lucide-react";
1111
import type { FC } from "react";
@@ -29,7 +29,13 @@ export const AppStatusStateIcon: FC<AppStatusStateIconProps> = ({
2929
switch (state) {
3030
case "idle":
3131
return (
32-
<SquareIcon className={cn(["text-content-secondary", className])} />
32+
<PauseIcon
33+
className={cn([
34+
"text-content-secondary",
35+
"fill-content-secondary",
36+
className,
37+
])}
38+
/>
3339
);
3440
case "complete":
3541
return (

0 commit comments

Comments
 (0)
0