Skip to content

Commit 22f1baa

Browse files
author
Laurie T. Malau
committed
Replace with sorting icon
1 parent 305d8a1 commit 22f1baa

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
Lines changed: 8 additions & 0 deletions
Loading

components/dashboard/src/teams/TeamUsage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { ErrorCodes } from "@gitpod/gitpod-protocol/lib/messaging/error";
2323
import { FeatureFlagContext } from "../contexts/FeatureFlagContext";
2424
import { ReactComponent as CreditsSvg } from "../images/credits.svg";
2525
import { ReactComponent as Spinner } from "../icons/Spinner.svg";
26-
import Arrow from "../components/Arrow";
26+
import { ReactComponent as SortArrow } from "../icons/sort-arrow.svg";
2727

2828
function TeamUsage() {
2929
const { teams } = useContext(TeamsContext);
@@ -204,7 +204,7 @@ function TeamUsage() {
204204
<ItemField className="my-auto cursor-pointer">
205205
<span onClick={() => setIsStartedTimeDescending(!isStartedTimeDescending)}>
206206
Started
207-
<Arrow direction={isStartedTimeDescending ? "down" : "up"} />
207+
<SortArrow className={isStartedTimeDescending ? "" : "rotate-180"} />
208208
</span>
209209
</ItemField>
210210
</Item>

0 commit comments

Comments
 (0)