Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | import { CornersBorderIcon } from "@assets/analyticsIcons";
import CustomArrowRight from "@assets/icons/RebrandedIcons/ArrowRight";
import { IconButton } from "@common/IconButton";
import { Stack, styled } from "@mui/material";
import { palette } from "@palette";
import { checkPortals } from "@utils/routing";
interface ActionsHeaderProps {
handleClose?: () => void;
handleExpandPanel?: () => void;
isExpanded: boolean;
isEmpty: boolean;
}
const ActionsHeader = ({
handleClose,
handleExpandPanel,
isExpanded,
isEmpty,
}: ActionsHeaderProps) => {
const { isManageMoney } = checkPortals();
return (
<ActionsContainer>
<StyledButton onClick={handleClose} size="small">
<CustomArrowRight stroke={palette.black[100]} />
</StyledButton>
{isManageMoney && handleExpandPanel && !isEmpty && (
<StyledButton onClick={handleExpandPanel}>
{isExpanded ? "Reduce View" : "Expand View"} <CornersBorderIcon />
</StyledButton>
)}
</ActionsContainer>
);
};
const ActionsContainer = styled(Stack)(() => ({
flexDirection: "row",
padding: "8px 0px",
justifyContent: "space-between",
alignItems: "center",
}));
const StyledButton = styled(IconButton)(() => ({
border: "none",
boxShadow: "none",
background: "inherit",
width: "fit-content !important",
color: palette.black[100],
fontSize: "14px",
fontWeight: 350,
lineHeight: "16.8px",
padding: "2px 8px !important",
height: "24px !important",
"& > span": {
display: "inline-flex",
alignItems: "center",
justifyContent: "center",
gap: "4px",
},
"&:hover": {
background: palette.neutral[20],
boxShadow: "none",
},
"&:disabled": {
background: "transparent",
boxShadow: "none",
},
}));
export default ActionsHeader;
|