UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

10 lines (9 loc) 304 B
import React from 'react'; export type PromptCardCopyEventHandler = (prompt: string) => unknown; export interface PromptCardProps { className?: string; tabIndex?: number; children: string; onCopy?: PromptCardCopyEventHandler; } export declare const PromptCard: React.FC<PromptCardProps>;