# extendify/0.6.0/src/blocks/block-category.js

Extendify, version 0.6.0. 15 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.6.0/code/src/blocks/block-category.js
- Raw: https://pluginprobe.com/plugins/extendify/0.6.0/raw/src/blocks/block-category.js
- Modified: 2022-02-23T01:03:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/0.6.0/code/src/blocks/block-category.js#L10-L20`.

```javascript
/**
 * WordPress dependencies
 */
import { registerBlockCollection } from '@wordpress/blocks'
import { Icon } from '@wordpress/components'
import { brandBlockIcon } from '@extendify/components/icons'

/**
 * Function to register a block collection for our block(s).
 */
registerBlockCollection('extendify', {
    title: 'Extendify',
    icon: <Icon icon={brandBlockIcon} />,
})

```
