import React from 'react'; interface FigmaQuestionProps { questionNumber?: string | number; title: string; description?: string; answer?: string; onAnswerChange?: (value: string) => void; onBack?: () => void; onNext?: () => void; showNavigation?: boolean; nextLabel?: string; backLabel?: string; className?: string; } export const FigmaQuestion: React.FC = ({ questionNumber = 'Q', title, description, answer = '', onAnswerChange, onBack, onNext, showNavigation = true, nextLabel = 'Next', backLabel = 'Back', className = '' }) => { return (
{/* Question Header */}
{questionNumber}
{title}
{description && (
{description}
)}
{/* Separator */}
{/* Answer Section */}
A