11import type { Interpolation , Theme } from "@emotion/react" ;
2- import KeyboardArrowDown from "@mui/icons-material/KeyboardArrowDown" ;
3- import KeyboardArrowUp from "@mui/icons-material/KeyboardArrowUp" ;
42import Button from "@mui/material/Button" ;
53import Collapse from "@mui/material/Collapse" ;
64import Skeleton from "@mui/material/Skeleton" ;
@@ -11,6 +9,7 @@ import type {
119} from "api/typesGenerated" ;
1210import sortBy from "lodash/sortBy" ;
1311import uniqBy from "lodash/uniqBy" ;
12+ import { ChevronDownIcon , ChevronUpIcon } from "lucide-react" ;
1413import { type FC , useState } from "react" ;
1514import {
1615type TimeRange ,
@@ -102,9 +101,9 @@ export const WorkspaceTimings: FC<WorkspaceTimingsProps> = ({
102101onClick = { ( ) => setIsOpen ( ( o ) => ! o ) }
103102>
104103{ isOpen ?(
105- < KeyboardArrowUp css = { { fontSize :16 , marginRight :16 } } />
104+ < ChevronUpIcon css = { { width : 16 , height :16 , marginRight :16 } } />
106105) :(
107- < KeyboardArrowDown css = { { fontSize :16 , marginRight :16 } } />
106+ < ChevronDownIcon css = { { width : 16 , height :16 , marginRight :16 } } />
108107) }
109108< span > Build timeline</ span >
110109< span