import { ArrowUpRight, Check, MessageCircleQuestion, Plus } from "lucide-react"; import { cn } from "~/lib/utils"; const questions = [ { question: "Could this change be related to my medication?", recipient: "Prescriber", }, { question: "What should I expect at the follow-up?", recipient: "Care team", }, { question: "Is this still the right time to take it?", recipient: "Pharmacist", }, ] as const; export function QuestionsPreview({ className }: { className?: string }) { return (

Questions

Ready for the conversation

{questions.map((item, index) => (
0 && "border-border-soft/55 border-t", )} >

{item.question}

Ask your {item.recipient.toLowerCase()}

))}
Save a question the moment it comes to you.
); }