import React from "react"; interface RadioOption { value: string; label: string; } interface RadioGroupProps { name: string; value: string; onChange: (value: string) => void; options: RadioOption[]; className?: string; } export default function RadioGroup( { name, value, onChange, options, className = "" }: RadioGroupProps) { return (