@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
11 lines (10 loc) • 625 B
TypeScript
import React from 'react';
import { ILoadingState } from './types/loadingState';
declare const LoadinfStateBoundary: <V extends string | unknown>(props: React.PropsWithChildren<ILoadingState<V>>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
/**
* @deprecated This component has been deprecated and will be removed in the next MAJOR release.
*/
declare const LoadingState: <V extends string | unknown>(props: React.PropsWithChildren<ILoadingState<V>> & {
ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof LoadinfStateBoundary>;
export { LoadingState };