@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
18 lines (17 loc) • 482 B
TypeScript
import { CSSProperties, ReactNode } from 'react';
export interface ChatSendButtonProps {
className?: string;
leftAddons?: ReactNode;
loading?: boolean;
onSend?: () => void;
onStop?: () => void;
rightAddons?: ReactNode;
style?: CSSProperties;
texts?: {
send?: string;
stop?: string;
warp?: string;
};
}
declare const ChatSendButton: import("react").NamedExoticComponent<ChatSendButtonProps>;
export default ChatSendButton;