2024-07-05 15:33:08 +05:30
|
|
|
|
import { Box, Image, Text } from "@chakra-ui/react";
|
2024-07-05 20:02:10 +05:30
|
|
|
|
import header from "../../../assets/IOheader.png";
|
2024-07-05 15:33:08 +05:30
|
|
|
|
|
|
|
|
|
|
const ViewIOdataHeader = () => {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Box
|
|
|
|
|
|
display={"flex"}
|
|
|
|
|
|
alignItems={"center"}
|
|
|
|
|
|
justifyContent={"space-between"}
|
|
|
|
|
|
bg={"#caf5d8"}
|
|
|
|
|
|
paddingRight={"25px"}
|
|
|
|
|
|
borderRadius={"10px"}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Box>
|
|
|
|
|
|
<Image src={header} />
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
<Box fontSize={"sm"} fontWeight={"500"}>
|
|
|
|
|
|
<Text>KKR Private Equity Fund (K-Prime)</Text>
|
|
|
|
|
|
<Text>sponsor name: KKR</Text>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
<Box fontSize={"sm"}>
|
|
|
|
|
|
<Text>IO Status</Text>
|
|
|
|
|
|
<Text fontWeight={"500"}>Open</Text>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
<Box fontSize={"sm"}>
|
|
|
|
|
|
<Text>IO MV NAV</Text>
|
|
|
|
|
|
<Text fontWeight={"500"}>$1,092,500</Text>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
<Box fontSize={"sm"}>
|
|
|
|
|
|
<Text>IO cash</Text>
|
|
|
|
|
|
<Text fontWeight={"500"}>$48,000</Text>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
<Box fontSize={"sm"}>
|
|
|
|
|
|
<Text>IO NAV</Text>
|
|
|
|
|
|
<Text fontWeight={"500"}>$1,140,500</Text>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export default ViewIOdataHeader;
|