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 | 2x 66x | import { Stack } from "@mui/material";
import { styled } from "@theme/v2/Provider";
export const imageStyle = {
height: "240px",
width: "100%",
maxHeight: "240px",
borderRadius: "8px",
objectFit: "cover",
cursor: "pointer",
};
export const StyledSectionStack = styled(Stack)(({ theme }) => ({
backgroundColor: theme.palette?.surface?.primary,
padding: "20px",
borderRadius: "20px",
}));
|