Chat composer with auto-resizing textarea, attachment chips for staged images/files, send/stop button, and slot-based left/right toolbar actions for mode pickers, model selectors, etc. Self-contained port from 21st.dev Agent Elements.
import { InputBar } from "@/components/ui/input-bar"; export default function BasicInputDemo() { return ( <div className="min-h-screen w-full flex items-center justify-center p-6 bg-white dark:bg-neutral-950"> <div className="w-full max-w-md"> <InputBar onSend={(m) => console.log("send:", m)} onStop={() => {}} status="ready" /> </div> </div> ); }
Part of Agent Elements — browse the full library on 21st.dev.