UNPKG

@wordpress/block-library

Version:
17 lines (14 loc) 308 B
import { createBlock } from '@wordpress/blocks'; const transforms = { from: [ { type: 'block', blocks: [ 'core/post-author' ], transform: ( { textAlign } ) => createBlock( 'core/post-author-name', { style: { typography: { textAlign } }, } ), }, ], }; export default transforms;