Components
React AI chat input — a minimal message field that streams animated chat bubbles and reveals a blurred spectrum glow once a conversation starts.
npx @21st-dev/cli@beta add ruixen.ui/gradient-chat-inputLoading preview...
import GradientChatInput from "@/components/ui/gradient-chat-input";
export default function DemoOne() {
return (
<div className="relative flex h-[600px] w-full items-center justify-center overflow-hidden p-8">
<GradientChatInput
placeholder="Send Message"
autoReply="Got it — looking into that now ✨"
onSend={(message) => console.log("sent:", message)}
/>
</div>
);
}