1
1
import type { Theme } from "@emotion/react" ;
2
2
import { useTheme } from "@emotion/react" ;
3
- import AppsIcon from "@mui/icons-material/Apps" ;
4
- import InsertDriveFile from "@mui/icons-material/InsertDriveFile" ;
5
3
import CircularProgress from "@mui/material/CircularProgress" ;
6
4
import Link from "@mui/material/Link" ;
7
5
import Tooltip from "@mui/material/Tooltip" ;
@@ -12,12 +10,16 @@ import type {
12
10
WorkspaceApp ,
13
11
} from "api/typesGenerated" ;
14
12
import { formatDistance , formatDistanceToNow } from "date-fns" ;
15
- import { CircleCheckIcon } from "lucide-react" ;
16
- import { CircleAlertIcon } from "lucide-react" ;
17
- import { TriangleAlertIcon } from "lucide-react" ;
18
- import { ExternalLinkIcon } from "lucide-react" ;
19
- import { HourglassIcon } from "lucide-react" ;
20
- import { CircleHelpIcon } from "lucide-react" ;
13
+ import {
14
+ CircleAlertIcon ,
15
+ CircleCheckIcon ,
16
+ CircleHelpIcon ,
17
+ ExternalLinkIcon ,
18
+ FileIcon ,
19
+ HourglassIcon ,
20
+ LayoutGridIcon ,
21
+ TriangleAlertIcon ,
22
+ } from "lucide-react" ;
21
23
import { useAppLink } from "modules/apps/useAppLink" ;
22
24
import type { FC } from "react" ;
23
25
@@ -287,7 +289,10 @@ export const AppStatuses: FC<AppStatusesProps> = ({
287
289
} ,
288
290
} }
289
291
>
290
- < InsertDriveFile sx = { { mr : 0.5 } } />
292
+ < FileIcon
293
+ className = "size-icon-xs"
294
+ style = { { marginRight : "0.5rem" } }
295
+ />
291
296
{ formatURI ( status . uri ) }
292
297
</ div >
293
298
</ Tooltip >
@@ -397,7 +402,7 @@ const AppLink: FC<AppLinkProps> = ({ app, agent, workspace }) => {
397
402
style = { { borderRadius : "3px" } }
398
403
/>
399
404
) : (
400
- < AppsIcon />
405
+ < LayoutGridIcon className = "size-icon-xs" />
401
406
) }
402
407
{ /* Keep app name short */ }
403
408
< span
0 commit comments