/** * WordPress dependencies */ import { __ } from '@wordpress/i18n' import { BlockControls } from '@wordpress/block-editor' import { Toolbar, ToolbarButton, } from '@wordpress/components' import { formatListBullets, formatListNumbered, alignLeft } from '@wordpress/icons' export default ( { setAttributes } ) => { return ( setAttributes( { listStyle: 'ul' } ) } /> setAttributes( { listStyle: 'ol' } ) } /> setAttributes( { listStyle: 'div' } ) } /> ) }