Components
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.
npx shadcn@latest add https://21st.dev/r/21stdev/input-barLoading preview...
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>
);
}
Loading preview...
Loading preview...