import { ListViewFooterProps } from "./ListViewFooterProps";
import { ListViewFooter as KendoListViewFooter } from "@progress/kendo-react-listview";

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

export default ListViewFooter;
