import { CardActionsProps } from "./CardActionsProps";
import { CardActions as KendoCardActions } from "@progress/kendo-react-layout";

const CardActions: React.FC<CardActionsProps> = ({
  dataTestId,
  children,
  className,
  layout,
  orientation,
  style,
}) => (
  <div data-test-id={dataTestId}>
    <KendoCardActions
      className={className}
      layout={layout}
      orientation={orientation}
      style={style}
    >
      {children}
    </KendoCardActions>
  </div>
);

export default CardActions;
