import { CardBodyProps } from "./CardBodyProps";
import { CardBody as KendoCardBody } from "@progress/kendo-react-layout";

const CardBody: React.FC<CardBodyProps> = ({
  dataTestId,
  children,
  className,
  style,
}) => (
  <div data-test-id={dataTestId}>
    <KendoCardBody className={className} style={style}>
      {children}
    </KendoCardBody>
  </div>
);

export default CardBody;
