React AI chat input — a minimal message field that streams animated chat bubbles and reveals a blurred spectrum glow once a conversation starts.
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> ); }
Part of Ruixen UI — browse the full library on 21st.dev.