diff --git a/packages/block-library/src/buttons/edit.js b/packages/block-library/src/buttons/edit.js
index e6354ea1204dd..950f0432b683d 100644
--- a/packages/block-library/src/buttons/edit.js
+++ b/packages/block-library/src/buttons/edit.js
@@ -10,14 +10,13 @@ import {
BlockControls,
useBlockProps,
__experimentalUseInnerBlocksProps as useInnerBlocksProps,
+ JustifyToolbar,
} from '@wordpress/block-editor';
-import { ToolbarGroup, ToolbarItem } from '@wordpress/components';
/**
* Internal dependencies
*/
import { name as buttonBlockName } from '../button';
-import ContentJustificationDropdown from './content-justification-dropdown';
const ALLOWED_BLOCKS = [ buttonBlockName ];
const BUTTONS_TEMPLATE = [ [ 'core/button' ] ];
@@ -42,24 +41,29 @@ function ButtonsEdit( {
},
templateInsertUpdatesSelection: true,
} );
+
+ function handleItemsAlignment( align ) {
+ return () => {
+ const justification =
+ contentJustification === align ? undefined : align;
+ setAttributes( {
+ contentJustification: justification,
+ } );
+ };
+ }
+
return (
<>