index.js in Block Animations, Motion & Scroll Effects – Ghost Kit 3.7.0, at gutenberg/index.js
| 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 |