@wordpress/block-editor
Version:
24 lines (13 loc) • 983 B
Markdown
# Ungroup Button
The `UngroupButton` components adds an icon on the BlockControls toolbar when a group block is selected. Then, it's possible to ungroup the inner blocks. After click on the icon, it removes the group block holding the InnerBlocks components which are moved one level up in the hierarchy.
This only happens in the mobile WordPress apps.

## Development guidelines
### Usage
Display the `UngroupButton` icon.
```jsx
import { UngroupButton } from '@wordpress/block-editor';
const MyUngroupButton = () => <UngroupButton />;
```
## Related components
Block Editor components are components that can be used to compose the UI of your block editor. Thus, they can only be used under a [`BlockEditorProvider`](https://github.com/WordPress/gutenberg/blob/HEAD/packages/block-editor/src/components/provider/README.md) in the components tree.