Components
Right-aligned user chat bubble. Renders text, image previews, and non-image file attachments from a UIMessage payload. Self-contained port from 21st.dev Agent Elements.
npx shadcn@latest add https://21st.dev/r/21stdev/user-messageLoading preview...
import { UserMessage } from "@/components/ui/user-message";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8 overflow-hidden">
<div className="w-full max-w-md">
<UserMessage
message={{
id: "msg-1",
parts: [{ type: "text", text: "Share the latest status." }],
}}
/>
</div>
</div>
);
}
Loading preview...