@atlaskit/empty-state
Version:
An empty state appears when there is no data to display and describes what the user can do next.
21 lines (20 loc) • 379 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type FC, type ReactNode } from 'react';
import type { Width } from '../types';
type ContainerProps = {
testId?: string;
width: Width;
children: ReactNode;
};
/**
* __Container__
*
* Upper level container for Empty State.
*
* @internal
*/
declare const Container: FC<ContainerProps>;
export default Container;