import React, { forwardRef } from "react"; import { cl } from "../../../utils/helpers"; type DataTableLoadingStateProps = React.HTMLAttributes; const DataTableLoadingState = forwardRef< HTMLDivElement, DataTableLoadingStateProps >(({ className, children, ...rest }, forwardedRef) => { return (
{children}
); }); export { DataTableLoadingState }; export type { DataTableLoadingStateProps };