/** * WordPress dependencies */ import { Flex } from '@wordpress/components'; /** * Vertical stack with a consistent gap. * * Our controls set `__nextHasNoMarginBottom`, so vertical spacing between * sibling fields is owned here (a single Flex gap), not by per-control margins. * * @param {Object} props Props (forwarded to Flex). * @param {Element} props.children Stack contents. * * @return {Element} The stack. */ export function Stack( { children, ...props } ) { return ( { children } ); } export default Stack;