diff --git a/packages/edit-site/src/components/global-styles/variations/variations-color.js b/packages/edit-site/src/components/global-styles/variations/variations-color.js index 2b3758e92a512..88361afcc58f8 100644 --- a/packages/edit-site/src/components/global-styles/variations/variations-color.js +++ b/packages/edit-site/src/components/global-styles/variations/variations-color.js @@ -1,7 +1,10 @@ /** * WordPress dependencies */ -import { __experimentalVStack as VStack } from '@wordpress/components'; +import { + __experimentalVStack as VStack, + __experimentalGrid as Grid, +} from '@wordpress/components'; /** * Internal dependencies @@ -22,13 +25,13 @@ export default function ColorVariations( { title, gap = 2 } ) { return ( { title && { title } } - + { colorVariations.map( ( variation, index ) => ( { () => } ) ) } - + ); }