# ghostkit/3.3.3/gutenberg/index.js

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.3.3. 39 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/index.js
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/index.js
- Modified: 2024-05-26T08:10:12+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/ghostkit/3.3.3/code/gutenberg/index.js#L10-L20`.

```javascript
/**
 * Store
 */
import './store';
/**
 * Blocks
 */
import './blocks';
/**
 * Formats
 */
import './formats';
/**
 * Extensions
 */
import './extend';
/**
 * Style Variants
 */
import './style-variants';
/**
 * Disable Blocks
 */
import './disable-blocks';

import { updateCategory } from '@wordpress/blocks';

/**
 * Icon
 */
import { ReactComponent as GhostKitLogoIcon } from './icons/ghostkit-logo.svg';

/**
 * Add category icon.
 */
updateCategory('ghostkit', {
	icon: <GhostKitLogoIcon />,
});

```
