AI Native UI Kit
Components

Follow-up Suggestions

A compact follow-up input with clickable suggestion chips.

Installation

npx shadcn@latest add https://ai-native-ui.com/r/follow-up.json

Usage

import { FollowUp } from "@/components/ui/follow-up";

<FollowUp
  suggestions={["Identify key trends", "Find more sources"]}
  onSend={(text) => ask(text)}
/>;

Props

PropTypeDescription
suggestionsstring[]Suggestion chips.
placeholderstringInput placeholder.
onSend(text: string) => voidFires on submit / chip click.
onSelect(text: string) => voidOverrides chip behavior when set.

On this page