-
-
- Page
- {current}
- of
- {total}
-
-
-
- )
-}
diff --git a/src/components/Table/Pagination/styles.ts b/src/components/Table/Pagination/styles.ts
deleted file mode 100644
index 4821bcc..0000000
--- a/src/components/Table/Pagination/styles.ts
+++ /dev/null
@@ -1,54 +0,0 @@
-import styled from 'styled-components'
-import { Flex } from "../../Box";
-
-export const PaginationWrapper = styled(Flex)`
- justify-content: center;
- align-items: center;
- gap: 15px;
-
- .action {
- display: flex;
- align-items: center;
- gap: 7.5px;
- color: ${({ theme }) => theme.table.color};
- user-select: none;
-
- .active {
- color: ${({ theme }) => theme.table.activeColor};
- }
- }
-
- .icon {
- width: 30px;
- height: 30px;
- cursor: pointer;
- border-radius: 4px;
-
- display: flex;
- justify-content: center;
- align-items: center;
- transition: all 0.25s ease;
- user-select: none;
-
- img {
- width: 20px;
- }
-
- &.left {
- rotate: 180deg;
- }
-
- &:hover {
- background: ${({ theme }) => theme.table.activeBackground};
- }
-
- &:active {
- scale: 0.96;
- }
-
- &.disabled {
- pointer-events: none;
- opacity: 0.5;
- }
- }
-`
diff --git a/src/components/Table/Table.tsx b/src/components/Table/Table.tsx
deleted file mode 100644
index 12d88f6..0000000
--- a/src/components/Table/Table.tsx
+++ /dev/null
@@ -1,164 +0,0 @@
-//import EmptyDataImage from 'assets/images/illustration-arch.png'
-import Loader from "../LoadingSpinner";
-//import { floorFormatter } from 'nft/utils/numbers'
-import { useCallback, useEffect, useMemo, useState } from 'react'
-
-import Pagination from './Pagination'
-import {
- EmptyDataText,
- EmptyDataWrapper,
- LoaderWrapper,
- TableBody,
- TableContainer,
- TableHead,
- TableHeadItem,
- TableItem,
- TableRow,
- TableTitle,
- TableWrapper,
-} from './styles'
-
-interface IColumn