UNPKG

@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

10 lines (9 loc) 371 B
import React from 'react'; import { IEmptyState } from './types/emptyState'; /** * @deprecated This component has been deprecated and will be removed in the next MAJOR release. */ declare const EmptyState: <V extends string | unknown>(props: IEmptyState<V> & { ref?: React.ForwardedRef<HTMLDivElement> | undefined | null; }) => JSX.Element; export { EmptyState };