|
1 | 1 | "use client"; |
2 | 2 |
|
3 | 3 | import { Connect } from "@/components/Connect"; |
4 | | -import { Card, CardContent } from "@/components/ui/card"; |
5 | | -import { ArrowDownIcon } from "lucide-react"; |
6 | | -import Link from "next/link"; |
7 | | -import { usePathname } from "next/navigation"; |
8 | | -import React, { useEffect, useMemo, useRef } from "react"; |
9 | | -import { SwapBox } from "./swapbox"; |
10 | | -import { useGetLpInfo } from "./useGetLpInfo"; |
11 | | -import { formatUnits, parseUnits } from "viem"; |
12 | 4 | import { Button } from "@/components/ui/button"; |
| 5 | +import { Card, CardContent } from "@/components/ui/card"; |
13 | 6 | import { |
14 | 7 | Select, |
15 | 8 | SelectContent, |
16 | 9 | SelectItem, |
17 | 10 | SelectTrigger, |
18 | 11 | SelectValue, |
19 | 12 | } from "@/components/ui/select"; |
| 13 | +import { ArrowDownUp } from "lucide-react"; |
20 | 14 | import Image from "next/image"; |
| 15 | +import Link from "next/link"; |
| 16 | +import { usePathname } from "next/navigation"; |
| 17 | +import React, { useEffect, useMemo, useRef } from "react"; |
| 18 | +import { formatUnits, parseUnits } from "viem"; |
| 19 | +import { SwapBox } from "./swapbox"; |
| 20 | +import { useGetLpInfo } from "./useGetLpInfo"; |
21 | 21 |
|
22 | 22 | export default function SwapPage() { |
23 | 23 | const pathname = usePathname(); |
@@ -378,7 +378,7 @@ export default function SwapPage() { |
378 | 378 | onClick={handleSwitch} |
379 | 379 | className="cursor-pointer rounded-xl border border-border bg-card w-10 h-10 flex items-center justify-center shadow-md active:scale-95 transition-transform" |
380 | 380 | > |
381 | | - <ArrowDownIcon className="w-6 h-6 text-foreground" /> |
| 381 | + <ArrowDownUp className="w-6 h-6 text-foreground" /> |
382 | 382 | </button> |
383 | 383 | </div> |
384 | 384 | <div> |
|
0 commit comments