import React from "react"; import MuiCardContent, { CardContentProps as MuiCardContentProps } from "@mui/material/CardContent"; import Stack from "@mui/material/Stack"; import { useCardContext } from "../../contexts/CardContext"; export interface CardContentProps extends MuiCardContentProps, React.PropsWithChildren {} export const CardContent: React.FC = ({ children, ...props }) => { const { isCompact } = useCardContext(); return ( {children} ); }; export default CardContent;