chat-input-with-addons
simple-ai/chat-input-with-addonsFreeExample
simple-ai publishes no description for this item.
Install it
npx shadcn@latest add https://simple-ai.dev/r/chat-input-with-addons.jsonSource
1"use client";23import { PlusIcon } from "lucide-react";4import { Separator } from "@/components/ui/separator";5import {6 ChatInput,7 ChatInputEditor,8 ChatInputGroupAddon,9 ChatInputGroupButton,10 ChatInputGroupText,11 ChatInputSubmitButton,12 useChatInput,13} from "@/registry/ui/chat-input";1415export default function ChatInputWithAddons() {16 const { value, onChange, handleSubmit } = useChatInput({17 onSubmit: (parsed) => {18 console.log("Submitted:", parsed.content);19 },20 });2122 return (23 <div className="w-full h-full flex justify-center items-center">24 <div className="w-full max-w-md">25 <ChatInput26 onSubmit={handleSubmit}27 value={value}28 onChange={onChange}29 >30 <ChatInputEditor placeholder="Type a message..." />31 <ChatInputGroupAddon align="block-end">32 <ChatInputGroupButton33 variant="outline"34 className="rounded-full"35 size="icon-sm"36 >37 <PlusIcon />38 </ChatInputGroupButton>39 <ChatInputGroupText className="ml-auto">40 52% used41 </ChatInputGroupText>42 <Separator orientation="vertical" className="h-6!" />43 <ChatInputSubmitButton />44 </ChatInputGroupAddon>45 </ChatInput>46 </div>47 </div>48 );49}
Files it writes
More from simple-ai
All 77 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| chat-input-demo-mentionschat-input-demo-mentions | simple-ai | Examples | Free | no deps | |
| chat-input-demo-simplechat-input-demo-simple | simple-ai | Examples | Free | no deps | |
| chat-message-area-demochat-message-area-demo | simple-ai | Examples | Free | no deps | |
| chat-message-area-demo-alignmentchat-message-area-demo-alignment | simple-ai | Examples | Free | no deps | |
| chat-message-area-demo-streamingchat-message-area-demo-streaming | simple-ai | Examples | Free | no deps | |
| chat-message-demochat-message-demo | simple-ai | Examples | Free | no deps | |
| chat-message-demo-avatar-imagechat-message-demo-avatar-image | simple-ai | Examples | Free | no deps | |
| chat-message-demo-simplechat-message-demo-simple | simple-ai | Examples | Free | no deps |
