@atlaskit/empty-state
Version:
An empty state appears when there is no data to display and describes what the user can do next.
22 lines (21 loc) • 326 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type FC } from 'react';
type ImageProps = {
height?: number;
maxHeight: number;
maxWidth: number;
width?: number;
src: string;
};
/**
* __Image__
*
* Image in Empty State.
*
* @internal
*/
declare const Image: FC<ImageProps>;
export default Image;