@wordpress/components
Version:
UI components for WordPress.
24 lines (22 loc) • 407 B
text/typescript
/**
* External dependencies
*/
import type { ReactNode } from 'react';
export type MenuGroupProps = {
/**
* A CSS `class` to give to the container element.
*/
className?: string;
/**
* Hide the top border on the container.
*/
hideSeparator?: boolean;
/**
* Text to be displayed as the menu group header.
*/
label?: string;
/**
* The children elements.
*/
children?: ReactNode;
};