@redocly/theme
Version:
Shared UI components lib
10 lines (9 loc) • 358 B
TypeScript
import type { JSX, PropsWithChildren } from 'react';
import type { MenuItemsAnimation } from '../../core/types';
export type MenuContainerProps = PropsWithChildren<{
growContent?: boolean;
className?: string;
hidden?: boolean;
animation?: MenuItemsAnimation;
}>;
export declare function MenuContainer(props: MenuContainerProps): JSX.Element;