import { CardImageProps } from "./CardImageProps";
import { CardImage as KendoCardImage } from "@progress/kendo-react-layout";

const CardImage: React.FC<CardImageProps> = ({
  dataTestId,
  className,
  src,
  style,
}) => (
  <div data-test-id={dataTestId}>
    <KendoCardImage className={className} src={src} style={style} />
  </div>
);

export default CardImage;
