import { Forward, Reply, ReplyAll } from 'lucide-react' export function MobileThreadResponseActions({ onReply, onReplyAll, onForward, }: { onReply: () => void onReplyAll: () => void onForward: () => void }) { return (
Thread response actions Reply Reply all Forward
) } function ResponseButton({ label, onClick, children, }: { label: string onClick: () => void children: React.ReactNode }) { return ( ) }