PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.7.0
Block Animations, Motion & Scroll Effects – Ghost Kit v3.7.0
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / index.js

index.js in Block Animations, Motion & Scroll Effects – Ghost Kit 3.7.0, at gutenberg/index.js

39 lines 501 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Store
3 */
4 import './store';
5 /**
6 * Blocks
7 */
8 import './blocks';
9 /**
10 * Formats
11 */
12 import './formats';
13 /**
14 * Extensions
15 */
16 import './extend';
17 /**
18 * Style Variants
19 */
20 import './style-variants';
21 /**
22 * Disable Blocks
23 */
24 import './disable-blocks';
25
26 import { updateCategory } from '@wordpress/blocks';
27
28 /**
29 * Icon
30 */
31 import { ReactComponent as GhostKitLogoIcon } from './icons/ghostkit-logo.svg';
32
33 /**
34 * Add category icon.
35 */
36 updateCategory('ghostkit', {
37 icon: <GhostKitLogoIcon />,
38 });
39