mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
chore: use pause icon for app idle state (#18546)
This commit is contained in:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user