UNPKG

@wordpress/block-library

Version:
20 lines (16 loc) 390 B
/** * Internal dependencies */ import initBlock from '../utils/init-block'; import metadata from './block.json'; import edit from './edit'; import icon from './icon'; import deprecated from './deprecated'; const { name } = metadata; export { metadata, name }; export const settings = { icon, edit, deprecated, }; export const init = () => initBlock( { name, metadata, settings } );