import { ToggleControl } from '@wordpress/components'; import SettingsBlock from './SettingsBlock'; import { Header, Title, Action, Description } from './SettingsBlockElements'; const ToggleSettingsBlock = ( { title, description, ...props } ) => ( ( props.actionProps?.callback( props.actionProps?.key, newValue ) } /> ), () => (
{ title && { title } } { description && ( { description } ) }
), ] } /> ); export default ToggleSettingsBlock;