import * as React from 'react'; import { Stack, type StackProps } from '@elementor/ui'; import { MenuContextProvider } from '../../contexts/menu-context'; type ToolbarMenuProps = StackProps; export default function ToolbarMenu( { children, ...props }: ToolbarMenuProps ) { return ( { children } ); }