@atlaskit/empty-state
Version:
An empty state appears when there is no data to display and describes what the user can do next.
17 lines (16 loc) • 301 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type FC, type ReactNode } from 'react';
/**
* __Spinner container__
*
* A spinner container for loading state of Empty State.
*
* @internal
*/
declare const SpinnerContainer: FC<{
children?: ReactNode;
}>;
export default SpinnerContainer;