@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
10 lines (9 loc) • 383 B
TypeScript
/// <reference types="react" />
import { ActionIconProps } from "../../ActionIcon";
export interface MobileChatSendButtonProps extends Omit<ActionIconProps, 'loading'> {
loading?: boolean;
onSend?: () => void;
onStop?: () => void;
}
declare const MobileChatSendButton: import("react").NamedExoticComponent<MobileChatSendButtonProps>;
export default MobileChatSendButton;