|
|
@ -20,290 +20,290 @@ import KeyboardArrowDownOutlinedIcon from '@mui/icons-material/KeyboardArrowDown
|
|
|
|
// ==============================|| DASHBOARD DEFAULT - POPULAR CARD ||============================== //
|
|
|
|
// ==============================|| DASHBOARD DEFAULT - POPULAR CARD ||============================== //
|
|
|
|
|
|
|
|
|
|
|
|
const PopularCard = ({ isLoading }) => {
|
|
|
|
const PopularCard = ({ isLoading }) => {
|
|
|
|
const theme = useTheme();
|
|
|
|
const theme = useTheme();
|
|
|
|
|
|
|
|
|
|
|
|
const [anchorEl, setAnchorEl] = React.useState(null);
|
|
|
|
const [anchorEl, setAnchorEl] = React.useState(null);
|
|
|
|
|
|
|
|
|
|
|
|
const handleClick = (event) => {
|
|
|
|
const handleClick = (event) => {
|
|
|
|
setAnchorEl(event.currentTarget);
|
|
|
|
setAnchorEl(event.currentTarget);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleClose = () => {
|
|
|
|
const handleClose = () => {
|
|
|
|
setAnchorEl(null);
|
|
|
|
setAnchorEl(null);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<>
|
|
|
|
{isLoading ? (
|
|
|
|
{isLoading ? (
|
|
|
|
<SkeletonPopularCard />
|
|
|
|
<SkeletonPopularCard />
|
|
|
|
) : (
|
|
|
|
) : (
|
|
|
|
<MainCard content={false}>
|
|
|
|
<MainCard content={false}>
|
|
|
|
<CardContent>
|
|
|
|
<CardContent>
|
|
|
|
<Grid container spacing={gridSpacing}>
|
|
|
|
<Grid container spacing={gridSpacing}>
|
|
|
|
<Grid item xs={12}>
|
|
|
|
<Grid item xs={12}>
|
|
|
|
<Grid container alignContent="center" justifyContent="space-between">
|
|
|
|
<Grid container alignContent="center" justifyContent="space-between">
|
|
|
|
<Grid item>
|
|
|
|
<Grid item>
|
|
|
|
<Typography variant="h4">Popular Stocks</Typography>
|
|
|
|
<Typography variant="h4">Popular Stocks</Typography>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
<Grid item>
|
|
|
|
<Grid item>
|
|
|
|
<MoreHorizOutlinedIcon
|
|
|
|
<MoreHorizOutlinedIcon
|
|
|
|
fontSize="small"
|
|
|
|
fontSize="small"
|
|
|
|
sx={{
|
|
|
|
sx={{
|
|
|
|
color: theme.palette.primary[200],
|
|
|
|
color: theme.palette.primary[200],
|
|
|
|
cursor: 'pointer'
|
|
|
|
cursor: 'pointer'
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
aria-controls="menu-popular-card"
|
|
|
|
aria-controls="menu-popular-card"
|
|
|
|
aria-haspopup="true"
|
|
|
|
aria-haspopup="true"
|
|
|
|
onClick={handleClick}
|
|
|
|
onClick={handleClick}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<Menu
|
|
|
|
<Menu
|
|
|
|
id="menu-popular-card"
|
|
|
|
id="menu-popular-card"
|
|
|
|
anchorEl={anchorEl}
|
|
|
|
anchorEl={anchorEl}
|
|
|
|
keepMounted
|
|
|
|
keepMounted
|
|
|
|
open={Boolean(anchorEl)}
|
|
|
|
open={Boolean(anchorEl)}
|
|
|
|
onClose={handleClose}
|
|
|
|
onClose={handleClose}
|
|
|
|
variant="selectedMenu"
|
|
|
|
variant="selectedMenu"
|
|
|
|
anchorOrigin={{
|
|
|
|
anchorOrigin={{
|
|
|
|
vertical: 'bottom',
|
|
|
|
vertical: 'bottom',
|
|
|
|
horizontal: 'right'
|
|
|
|
horizontal: 'right'
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
transformOrigin={{
|
|
|
|
transformOrigin={{
|
|
|
|
vertical: 'top',
|
|
|
|
vertical: 'top',
|
|
|
|
horizontal: 'right'
|
|
|
|
horizontal: 'right'
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<MenuItem onClick={handleClose}> Today</MenuItem>
|
|
|
|
<MenuItem onClick={handleClose}> Today</MenuItem>
|
|
|
|
<MenuItem onClick={handleClose}> This Month</MenuItem>
|
|
|
|
<MenuItem onClick={handleClose}> This Month</MenuItem>
|
|
|
|
<MenuItem onClick={handleClose}> This Year </MenuItem>
|
|
|
|
<MenuItem onClick={handleClose}> This Year </MenuItem>
|
|
|
|
</Menu>
|
|
|
|
</Menu>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
<Grid item xs={12} sx={{ pt: '16px !important' }}>
|
|
|
|
<Grid item xs={12} sx={{ pt: '16px !important' }}>
|
|
|
|
<BajajAreaChartCard />
|
|
|
|
<BajajAreaChartCard />
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
<Grid item xs={12}>
|
|
|
|
<Grid item xs={12}>
|
|
|
|
<Grid container direction="column">
|
|
|
|
<Grid container direction="column">
|
|
|
|
<Grid item>
|
|
|
|
<Grid item>
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
<Grid item>
|
|
|
|
<Grid item>
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
Bajaj Finery
|
|
|
|
Bajaj Finery
|
|
|
|
</Typography>
|
|
|
|
</Typography>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
<Grid item>
|
|
|
|
<Grid item>
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
<Grid item>
|
|
|
|
<Grid item>
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
$1839.00
|
|
|
|
$1839.00
|
|
|
|
</Typography>
|
|
|
|
</Typography>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
<Grid item>
|
|
|
|
<Grid item>
|
|
|
|
<Avatar
|
|
|
|
<Avatar
|
|
|
|
variant="rounded"
|
|
|
|
variant="rounded"
|
|
|
|
sx={{
|
|
|
|
sx={{
|
|
|
|
width: 16,
|
|
|
|
width: 16,
|
|
|
|
height: 16,
|
|
|
|
height: 16,
|
|
|
|
borderRadius: '5px',
|
|
|
|
borderRadius: '5px',
|
|
|
|
backgroundColor: theme.palette.success.light,
|
|
|
|
backgroundColor: theme.palette.success.light,
|
|
|
|
color: theme.palette.success.dark,
|
|
|
|
color: theme.palette.success.dark,
|
|
|
|
ml: 2
|
|
|
|
ml: 2
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<KeyboardArrowUpOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
<KeyboardArrowUpOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
</Avatar>
|
|
|
|
</Avatar>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: 'success.dark' }}>
|
|
|
|
|
|
|
|
10% Profit
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
|
|
|
|
<Grid container direction="column">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
TTML
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
$100.00
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Avatar
|
|
|
|
|
|
|
|
variant="rounded"
|
|
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
|
|
width: 16,
|
|
|
|
|
|
|
|
height: 16,
|
|
|
|
|
|
|
|
borderRadius: '5px',
|
|
|
|
|
|
|
|
backgroundColor: theme.palette.orange.light,
|
|
|
|
|
|
|
|
color: theme.palette.orange.dark,
|
|
|
|
|
|
|
|
marginLeft: 1.875
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<KeyboardArrowDownOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: theme.palette.orange.dark }}>
|
|
|
|
|
|
|
|
10% loss
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
|
|
|
|
<Grid container direction="column">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
Reliance
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
$200.00
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Avatar
|
|
|
|
|
|
|
|
variant="rounded"
|
|
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
|
|
width: 16,
|
|
|
|
|
|
|
|
height: 16,
|
|
|
|
|
|
|
|
borderRadius: '5px',
|
|
|
|
|
|
|
|
backgroundColor: theme.palette.success.light,
|
|
|
|
|
|
|
|
color: theme.palette.success.dark,
|
|
|
|
|
|
|
|
ml: 2
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<KeyboardArrowUpOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: theme.palette.success.dark }}>
|
|
|
|
|
|
|
|
10% Profit
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
|
|
|
|
<Grid container direction="column">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
TTML
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
$189.00
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Avatar
|
|
|
|
|
|
|
|
variant="rounded"
|
|
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
|
|
width: 16,
|
|
|
|
|
|
|
|
height: 16,
|
|
|
|
|
|
|
|
borderRadius: '5px',
|
|
|
|
|
|
|
|
backgroundColor: theme.palette.orange.light,
|
|
|
|
|
|
|
|
color: theme.palette.orange.dark,
|
|
|
|
|
|
|
|
ml: 2
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<KeyboardArrowDownOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: theme.palette.orange.dark }}>
|
|
|
|
|
|
|
|
10% loss
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
|
|
|
|
<Grid container direction="column">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
Stolon
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
$189.00
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Avatar
|
|
|
|
|
|
|
|
variant="rounded"
|
|
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
|
|
width: 16,
|
|
|
|
|
|
|
|
height: 16,
|
|
|
|
|
|
|
|
borderRadius: '5px',
|
|
|
|
|
|
|
|
backgroundColor: theme.palette.orange.light,
|
|
|
|
|
|
|
|
color: theme.palette.orange.dark,
|
|
|
|
|
|
|
|
ml: 2
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<KeyboardArrowDownOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: theme.palette.orange.dark }}>
|
|
|
|
|
|
|
|
10% loss
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</CardContent>
|
|
|
|
</Grid>
|
|
|
|
<CardActions sx={{ p: 1.25, pt: 0, justifyContent: 'center' }}>
|
|
|
|
</Grid>
|
|
|
|
<Button size="small" disableElevation>
|
|
|
|
</Grid>
|
|
|
|
View All
|
|
|
|
<Grid item>
|
|
|
|
<ChevronRightOutlinedIcon />
|
|
|
|
<Typography variant="subtitle2" sx={{ color: 'success.dark' }}>
|
|
|
|
</Button>
|
|
|
|
10% Profit
|
|
|
|
</CardActions>
|
|
|
|
</Typography>
|
|
|
|
</MainCard>
|
|
|
|
</Grid>
|
|
|
|
)}
|
|
|
|
</Grid>
|
|
|
|
</>
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
);
|
|
|
|
<Grid container direction="column">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
TTML
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
$100.00
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Avatar
|
|
|
|
|
|
|
|
variant="rounded"
|
|
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
|
|
width: 16,
|
|
|
|
|
|
|
|
height: 16,
|
|
|
|
|
|
|
|
borderRadius: '5px',
|
|
|
|
|
|
|
|
backgroundColor: theme.palette.orange.light,
|
|
|
|
|
|
|
|
color: theme.palette.orange.dark,
|
|
|
|
|
|
|
|
marginLeft: 1.875
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<KeyboardArrowDownOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: theme.palette.orange.dark }}>
|
|
|
|
|
|
|
|
10% loss
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
|
|
|
|
<Grid container direction="column">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
Reliance
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
$200.00
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Avatar
|
|
|
|
|
|
|
|
variant="rounded"
|
|
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
|
|
width: 16,
|
|
|
|
|
|
|
|
height: 16,
|
|
|
|
|
|
|
|
borderRadius: '5px',
|
|
|
|
|
|
|
|
backgroundColor: theme.palette.success.light,
|
|
|
|
|
|
|
|
color: theme.palette.success.dark,
|
|
|
|
|
|
|
|
ml: 2
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<KeyboardArrowUpOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: theme.palette.success.dark }}>
|
|
|
|
|
|
|
|
10% Profit
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
|
|
|
|
<Grid container direction="column">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
TTML
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
$189.00
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Avatar
|
|
|
|
|
|
|
|
variant="rounded"
|
|
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
|
|
width: 16,
|
|
|
|
|
|
|
|
height: 16,
|
|
|
|
|
|
|
|
borderRadius: '5px',
|
|
|
|
|
|
|
|
backgroundColor: theme.palette.orange.light,
|
|
|
|
|
|
|
|
color: theme.palette.orange.dark,
|
|
|
|
|
|
|
|
ml: 2
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<KeyboardArrowDownOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: theme.palette.orange.dark }}>
|
|
|
|
|
|
|
|
10% loss
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
|
|
|
|
<Grid container direction="column">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
Stolon
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Grid container alignItems="center" justifyContent="space-between">
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle1" color="inherit">
|
|
|
|
|
|
|
|
$189.00
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Avatar
|
|
|
|
|
|
|
|
variant="rounded"
|
|
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
|
|
width: 16,
|
|
|
|
|
|
|
|
height: 16,
|
|
|
|
|
|
|
|
borderRadius: '5px',
|
|
|
|
|
|
|
|
backgroundColor: theme.palette.orange.light,
|
|
|
|
|
|
|
|
color: theme.palette.orange.dark,
|
|
|
|
|
|
|
|
ml: 2
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<KeyboardArrowDownOutlinedIcon fontSize="small" color="inherit" />
|
|
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<Grid item>
|
|
|
|
|
|
|
|
<Typography variant="subtitle2" sx={{ color: theme.palette.orange.dark }}>
|
|
|
|
|
|
|
|
10% loss
|
|
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</CardContent>
|
|
|
|
|
|
|
|
<CardActions sx={{ p: 1.25, pt: 0, justifyContent: 'center' }}>
|
|
|
|
|
|
|
|
<Button size="small" disableElevation>
|
|
|
|
|
|
|
|
View All
|
|
|
|
|
|
|
|
<ChevronRightOutlinedIcon />
|
|
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
</CardActions>
|
|
|
|
|
|
|
|
</MainCard>
|
|
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
</>
|
|
|
|
|
|
|
|
);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
PopularCard.propTypes = {
|
|
|
|
PopularCard.propTypes = {
|
|
|
|
isLoading: PropTypes.bool
|
|
|
|
isLoading: PropTypes.bool
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export default PopularCard;
|
|
|
|
export default PopularCard;
|
|
|
|