/**
* External dependencies
*/
import PropTypes from 'prop-types';
import RadioControl, {
RadioControlOptionLayout,
} from '@woocommerce/base-components/radio-control';
const PackageOptions = ( {
className,
noResultsMessage,
onChange,
options,
renderOption,
selected,
} ) => {
if ( options.length === 0 ) {
return (
{ noResultsMessage }
);
}
if ( options.length > 1 ) {
return (
);
}
const {
label,
secondaryLabel,
description,
secondaryDescription,
} = renderOption( options[ 0 ] );
return (
);
};
PackageOptions.propTypes = {
noResultsMessage: PropTypes.string.isRequired,
onChange: PropTypes.func.isRequired,
options: PropTypes.arrayOf( PropTypes.object ).isRequired,
renderOption: PropTypes.func.isRequired,
className: PropTypes.string,
selected: PropTypes.string,
};
export default PackageOptions;