@wordpress/block-library
Version:
Block library for the WordPress editor.
25 lines (19 loc) • 629 B
JavaScript
import clsx from 'clsx';
import { useBlockProps, useInnerBlocksProps } from '@wordpress/block-editor';
const DEFAULT_BLOCK = {
name: 'core/button',
};
function ButtonsEdit( { attributes, className } ) {
const { fontSize, layout, style } = attributes;
const blockProps = useBlockProps( {
className: clsx( className, {
'has-custom-font-size': fontSize || style?.typography?.fontSize,
} ),
} );
const innerBlocksProps = useInnerBlocksProps( blockProps, {
defaultBlock: DEFAULT_BLOCK,
orientation: layout?.orientation ?? 'horizontal',
} );
return <div { ...innerBlocksProps } />;
}
export default ButtonsEdit;