1
1
import type { Interpolation , Theme } from "@emotion/react" ;
2
- import KeyboardArrowDown from "@mui/icons-material/KeyboardArrowDown" ;
3
- import KeyboardArrowUp from "@mui/icons-material/KeyboardArrowUp" ;
4
2
import Button from "@mui/material/Button" ;
5
3
import Collapse from "@mui/material/Collapse" ;
6
4
import Skeleton from "@mui/material/Skeleton" ;
@@ -11,6 +9,7 @@ import type {
11
9
} from "api/typesGenerated" ;
12
10
import sortBy from "lodash/sortBy" ;
13
11
import uniqBy from "lodash/uniqBy" ;
12
+ import { ChevronDownIcon , ChevronUpIcon } from "lucide-react" ;
14
13
import { type FC , useState } from "react" ;
15
14
import {
16
15
type TimeRange ,
@@ -102,9 +101,9 @@ export const WorkspaceTimings: FC<WorkspaceTimingsProps> = ({
102
101
onClick = { ( ) => setIsOpen ( ( o ) => ! o ) }
103
102
>
104
103
{ isOpen ?(
105
- < KeyboardArrowUp css = { { fontSize :16 , marginRight :16 } } />
104
+ < ChevronUpIcon css = { { width : 16 , height :16 , marginRight :16 } } />
106
105
) :(
107
- < KeyboardArrowDown css = { { fontSize :16 , marginRight :16 } } />
106
+ < ChevronDownIcon css = { { width : 16 , height :16 , marginRight :16 } } />
108
107
) }
109
108
< span > Build timeline</ span >
110
109
< span