@chatui/core
Version:
The React library for Chatbot UI
11 lines (10 loc) • 345 B
TypeScript
import React from 'react';
export type EmptyProps = {
className?: string;
type?: 'error' | 'error_permission' | 'error_system' | 'order' | 'benefit' | 'search' | 'knowledge';
image?: string;
tip?: string;
desc?: string;
children?: React.ReactNode;
};
export declare const Empty: (props: EmptyProps) => React.JSX.Element;