UNPKG

@wordpress/block-library

Version:
18 lines (14 loc) 397 B
import { postList as icon } from '@wordpress/icons'; import initBlock from '../utils/init-block'; import deprecated from './deprecated'; import edit from './edit'; import metadata from './block.json'; const { name } = metadata; export { metadata, name }; export const settings = { icon, example: {}, edit, deprecated, }; export const init = () => initBlock( { name, metadata, settings } );