1
1
import CloudQueue from "@mui/icons-material/CloudQueue" ;
2
- import DeleteOutlined from "@mui/icons-material/DeleteOutlined" ;
3
2
import KeyboardArrowDownOutlined from "@mui/icons-material/KeyboardArrowDownOutlined" ;
4
- import PlayArrowOutlined from "@mui/icons-material/PlayArrowOutlined" ;
5
- import StopOutlined from "@mui/icons-material/StopOutlined" ;
6
3
import LoadingButton from "@mui/lab/LoadingButton" ;
7
4
import { hasError , isApiValidationError } from "api/errors" ;
8
5
import type { Template , Workspace } from "api/typesGenerated" ;
@@ -22,6 +19,7 @@ import { PaginationHeader } from "components/PaginationWidget/PaginationHeader";
22
19
import { PaginationWidgetBase } from "components/PaginationWidget/PaginationWidgetBase" ;
23
20
import { Stack } from "components/Stack/Stack" ;
24
21
import { TableToolbar } from "components/TableToolbar/TableToolbar" ;
22
+ import { PlayIcon , SquareIcon , TrashIcon } from "lucide-react" ;
25
23
import { WorkspacesTable } from "pages/WorkspacesPage/WorkspacesTable" ;
26
24
import type { FC } from "react" ;
27
25
import type { UseQueryResult } from "react-query" ;
@@ -160,7 +158,7 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({
160
158
}
161
159
onClick = { onStartAll }
162
160
>
163
- < PlayArrowOutlined /> Start
161
+ < PlayIcon /> Start
164
162
</ DropdownMenuItem >
165
163
< DropdownMenuItem
166
164
disabled = {
@@ -170,7 +168,7 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({
170
168
}
171
169
onClick = { onStopAll }
172
170
>
173
- < StopOutlined /> Stop
171
+ < SquareIcon /> Stop
174
172
</ DropdownMenuItem >
175
173
< DropdownMenuSeparator />
176
174
< DropdownMenuItem onClick = { onUpdateAll } >
@@ -180,7 +178,7 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({
180
178
className = "text-content-destructive focus:text-content-destructive"
181
179
onClick = { onDeleteAll }
182
180
>
183
- < DeleteOutlined /> Delete…
181
+ < TrashIcon /> Delete…
184
182
</ DropdownMenuItem >
185
183
</ DropdownMenuContent >
186
184
</ DropdownMenu >
0 commit comments