rixky update

This commit is contained in:
2024-08-16 18:42:34 +05:30
parent 71f8c8a98d
commit e7aef39fa7

View File

@@ -391,10 +391,11 @@ const Investors = ({data}) => {
<Box bg="white.500">
<HStack
display={"flex"}
justifyContent={"start"}
justifyContent={"space-between"}
pb={3}
spacing="24px"
>
<span>
<Input
type="search"
width={300}
@@ -405,11 +406,14 @@ const Investors = ({data}) => {
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
/>
{/* <HStack display={"flex"} alignItems={"center"}>
<Pagination totalItems={10} />
</HStack> */}
<Icon onClick={handleRefresh} fontWeight={600} as={FiRefreshCw} boxSize={8} p={2} rounded={'md'} _hover={{bg:'gray.100'}} cursor={'pointer'} />
</span>
<HStack display={"flex"} alignItems={"end"} flexDirection={'column'} >
<Text fontWeight={600} fontSize={'sm'} as={'span'}>Total Investment Amount ( USD )</Text>
<Text color={'gray.600'} fontWeight={800} fontSize={'sm'} as={'span'}>$ {parseFloat(IODetails?.totalAmtInvestmentInUSD).toFixed(2)}</Text>
</HStack>
</HStack>
</Box>