Chat bubble with a question and voting options. Each row fills proportionally to its vote count.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Chat4 } from "@/components/beste/piece/chat4";
<Chat4
question="Where are we grabbing lunch?"
options={[
{
"label": "Packer's Coffee",
"votes": 6
},
{
"label": "Sushi place",
"votes": 3
},
{
"label": "Stay in, order pizza",
"votes": 9
}
]}
role="received"
votesLabel="votes"
/>