File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { ErrorCodes } from "@gitpod/gitpod-protocol/lib/messaging/error";
23
23
import { FeatureFlagContext } from "../contexts/FeatureFlagContext" ;
24
24
import { ReactComponent as CreditsSvg } from "../images/credits.svg" ;
25
25
import { ReactComponent as Spinner } from "../icons/Spinner.svg" ;
26
- import Arrow from "../components/Arrow " ;
26
+ import { ReactComponent as SortArrow } from "../images/sort-arrow.svg " ;
27
27
28
28
function TeamUsage ( ) {
29
29
const { teams } = useContext ( TeamsContext ) ;
@@ -202,9 +202,16 @@ function TeamUsage() {
202
202
< span > Credits</ span >
203
203
</ ItemField >
204
204
< ItemField className = "my-auto cursor-pointer" >
205
- < span onClick = { ( ) => setIsStartedTimeDescending ( ! isStartedTimeDescending ) } >
205
+ < span
206
+ className = "flex my-auto"
207
+ onClick = { ( ) => setIsStartedTimeDescending ( ! isStartedTimeDescending ) }
208
+ >
206
209
Started
207
- < Arrow direction = { isStartedTimeDescending ? "down" : "up" } />
210
+ < SortArrow
211
+ className = { `h-4 w-4 my-auto ${
212
+ isStartedTimeDescending ? "" : " transform rotate-180"
213
+ } `}
214
+ />
208
215
</ span >
209
216
</ ItemField >
210
217
</ Item >
You can’t perform that action at this time.
0 commit comments