import React from 'react'; const RadioList = ({ items, formData, handleChange, fieldName, icon: Icon, className, sectionLabel, required, }) => { return (
{sectionLabel && (

{sectionLabel} {required && *}

)}
{items.map((item) => (
))}
); }; export default RadioList;