UNPKG

@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) 326 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; /** * __Actions container__ * * A container for actions: primary action, secondary action, and tertiary action. * * @internal */ declare const ActionsContainer: FC<{ children: ReactNode; }>; export default ActionsContainer;