import React from 'react'; /** * ProRank Radio Group Component * Styled radio button group matching ProRank design standards */ interface RadioOption { value: string; label: string; disabled?: boolean; } interface ProrankRadioGroupProps { name: string; options: RadioOption[]; value: string; onChange: (value: string) => void; className?: string; label?: string; help?: string; inline?: boolean; } const ProrankRadioGroup: React.FC = ({ name, options, value, onChange, className = '', label, help, inline = true }) => { return (
{label && } {help &&

{help}

}
{options.map((option) => ( ))}
); }; export default ProrankRadioGroup;