/** * External dependencies */ import { useInstanceId } from '@wordpress/compose'; /** * Internal dependencies */ import { CheckboxControl } from '../checkbox-control'; import type { CheckboxListOptions } from './types'; export type CheckboxListOptionControlProps = { option: CheckboxListOptions; shouldTruncateOptions: boolean; showExpanded: boolean; index: number; limit: number; checked: boolean; disabled: boolean; renderedShowMore: false | JSX.Element; onChange: ( value: string ) => void; }; export function CheckboxListOptionControl( { option, shouldTruncateOptions, showExpanded, index, limit, checked, disabled, renderedShowMore, onChange, }: CheckboxListOptionControlProps ) { const checkboxControlInstanceId = useInstanceId( CheckboxListOptionControl, 'wc-block-checkbox-list-option' ) as string; return ( <>