@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
9 lines (8 loc) • 571 B
TypeScript
/// <reference types="react" />
import type { IPropsEmptyState } from './IEmptyState';
/**
* Molecule: EmptyState
* Empty states are used when a list, table, or chart has no items or data to show. This is an opportunity to provide explanation or guidance to help merchants progress. The empty state component is intended for use when a full page in the admin is empty, and not for individual elements or areas in the interface.
*/
declare function EmptyState({ title, description, img, className, children }: IPropsEmptyState): JSX.Element;
export default EmptyState;