/** * WordPress dependencies */ import { __experimentalHStack as HStack, __unstableMotion as motion, } from '@wordpress/components'; /** * Internal dependencies */ import PresetColors from './preset-colors'; import PreviewWrapper from './preview-wrapper'; const firstFrameVariants = { start: { scale: 1, opacity: 1, }, hover: { scale: 0, opacity: 0, }, }; interface StylesPreviewColorsProps { label?: string; isFocused?: boolean; withHoverView?: boolean; } const StylesPreviewColors = ( { label, isFocused, withHoverView, }: StylesPreviewColorsProps ) => { return ( { ( { key } ) => ( ) } ); }; export default StylesPreviewColors;