chore: use pause icon for app idle state (#18546)

This commit is contained in:
Asher
2025-06-24 11:04:27 -08:00
committed by GitHub
parent b93db1ceda
commit 6ed22046af
+8 -2
View File
@@ -5,7 +5,7 @@ import {
CircleAlertIcon,
CircleCheckIcon,
HourglassIcon,
SquareIcon,
PauseIcon,
TriangleAlertIcon,
} from "lucide-react";
import type { FC } from "react";
@@ -29,7 +29,13 @@ export const AppStatusStateIcon: FC<AppStatusStateIconProps> = ({
switch (state) {
case "idle":
return (
<SquareIcon className={cn(["text-content-secondary", className])} />
<PauseIcon
className={cn([
"text-content-secondary",
"fill-content-secondary",
className,
])}
/>
);
case "complete":
return (