import React from 'react'; interface FigmaMultipleChoiceProps { options: string[]; selectedValue?: string; onSelect?: (value: string) => void; className?: string; } export const FigmaMultipleChoice: React.FC = ({ options, selectedValue, onSelect, className = "" }) => { return (
{options.map((option, index) => { const isSelected = selectedValue === option; return (
onSelect?.(option)} >
{option}
); })}
); }; export default FigmaMultipleChoice;