import SettingsBlock from './SettingsBlock'; import { Header, Title, Description } from './SettingsBlockElements'; import { PayPalRdbWithContent } from '../Fields'; const RadioSettingsBlock = ( { title, description, options = [], ...props } ) => ( ( <>
{ title } { description }
{ options.map( ( option ) => ( props.actionProps?.callback( props.actionProps?.key, newValue ) } label={ option.label } description={ option.description } toggleAdditionalContent={ true } > { option.additionalContent } ) ) } ), ] } /> ); export default RadioSettingsBlock;