UNPKG

@chatui/core

Version:

The React library for Chatbot UI

11 lines (10 loc) 272 B
import React from 'react'; export type EmptyProps = { className?: string; type?: 'error' | 'default'; image?: string; tip?: string; desc?: string; children?: React.ReactNode; }; export declare const Empty: (props: EmptyProps) => React.JSX.Element;