Installation
pnpm dlx shadcn@latest add https://neobrutalism.dev/r/message.jsonUsage
import {
Message,
MessageAvatar,
MessageContent,
MessageHeader,
MessageFooter,
MessageGroup,
} from '@/components/ui/message'<Message>
<MessageAvatar>
<Avatar>
<AvatarFallback>CN</AvatarFallback>
</Avatar>
</MessageAvatar>
<MessageContent>
<Bubble>
<BubbleContent>Hello there!</BubbleContent>
</Bubble>
</MessageContent>
</Message>The message content is usually a Bubble. Use align="end" to place the message on the right side of the conversation.
Examples
Default
Group
Use MessageGroup to group consecutive messages from the same sender.