UNPKG

@wordpress/block-library

Version:
20 lines 401 B
/** * WordPress dependencies */ import { createBlock } from '@wordpress/blocks'; const transforms = { to: [{ type: 'block', blocks: ['core/separator'], // Transform to Separator. transform: ({ anchor }) => { return createBlock('core/separator', { anchor: anchor || '' }); } }] }; export default transforms; //# sourceMappingURL=transforms.js.map