@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
12 lines (11 loc) • 412 B
TypeScript
import { HTMLAttributes, ReactNode } from 'react';
export interface EmptyStatusProps {
icon: string;
title: string;
description?: string;
actions?: ReactNode;
className?: HTMLAttributes<HTMLDivElement>['className'];
}
declare function EmptyStatus(props: EmptyStatusProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof EmptyStatus>;
export default _default;