import { CardFooterProps } from "./CardFooterProps";
import { CardFooter as KendoCardFooter } from "@progress/kendo-react-layout";

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

export default CardFooter;
