/** * External dependencies */ import classnames from 'classnames'; import { withInstanceId } from '@wordpress/compose'; /** * Internal dependencies */ import { RadioControlOption } from '../radio-control'; export interface RadioControlAccordionProps { className?: string; instanceId: number; id: string; onChange: ( value: string ) => void; options: Array< { value: string; label: string | JSX.Element; onChange?: ( value: string ) => void; name: string; content: JSX.Element; } >; selected: string | null; } const RadioControlAccordion = ( { className, instanceId, id, selected, onChange, options = [], }: RadioControlAccordionProps ): JSX.Element | null => { const radioControlId = id || instanceId; if ( ! options.length ) { return null; } return (