| 1 |
/** |
| 2 |
* WordPress dependencies |
| 3 |
*/ |
| 4 |
import { registerBlockCollection } from '@wordpress/blocks' |
| 5 |
import { Icon } from '@wordpress/components' |
| 6 |
import { brandBlockIcon } from '@extendify/components/icons' |
| 7 |
|
| 8 |
/** |
| 9 |
* Function to register a block collection for our block(s). |
| 10 |
*/ |
| 11 |
registerBlockCollection('extendify', { |
| 12 |
title: 'Extendify', |
| 13 |
icon: <Icon icon={brandBlockIcon} />, |
| 14 |
}) |
| 15 |
|