Components
Round send/stop button for AI chat input — idle, typing, streaming states. Self-contained port from 21st.dev Agent Elements.
npx shadcn@latest add https://21st.dev/r/21stdev/send-buttonLoading preview...
import { SendButton } from "@/components/ui/send-button";
export default function Demo() {
return (
<div className="flex h-full w-full items-center justify-center p-8">
<SendButton state="typing" />
</div>
);
}