import React from "react";
import { ExpandProps } from "./ExpandProps";
import { Expand as KendoExpand } from "@progress/kendo-react-animation";

const Expand: React.FC<ExpandProps> = (props) => {
  return (
    <div data-test-id={props.dataTestId}>
      <KendoExpand {...props}>{props.children}</KendoExpand>
    </div>
  );
};

export default Expand;
