type QuestionBubbleProps = { text: string; }; export const QuestionBubble = ({ text }: QuestionBubbleProps) => { return (
🤦: {text}
); };