diff --git a/app/src/components/Paginator.tsx b/app/src/components/Paginator.tsx
index d1adae9..d49b821 100644
--- a/app/src/components/Paginator.tsx
+++ b/app/src/components/Paginator.tsx
@@ -1,11 +1,6 @@
-import { HStack, IconButton, Text, Select, type StackProps } from "@chakra-ui/react";
+import { HStack, IconButton, Text, Select, type StackProps, Icon } from "@chakra-ui/react";
import React, { useCallback } from "react";
-import {
- BsChevronDoubleLeft,
- BsChevronDoubleRight,
- BsChevronLeft,
- BsChevronRight,
-} from "react-icons/bs";
+import { FiChevronsLeft, FiChevronsRight, FiChevronLeft, FiChevronRight } from "react-icons/fi";
import { usePageParams } from "~/utils/hooks";
const pageSizeOptions = [10, 25, 50, 100];
@@ -45,7 +40,6 @@ const Paginator = ({
return (
}
+ icon={}
/>
}
+ icon={}
/>
{condense && (
@@ -102,7 +96,7 @@ const Paginator = ({
onClick={nextPage}
isDisabled={page === lastPage}
aria-label="Next page"
- icon={}
+ icon={}
/>
}
+ icon={}
/>