@atlaskit/menu
Version:
A list of options to help users navigate, or perform actions.
13 lines (12 loc) • 475 B
TypeScript
/// <reference types="react" />
import type { SectionProps } from '../types';
/**
* __Section__
*
* A section includes related actions or items in a menu.
*
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/menu/docs/section)
* - [Code](https://atlaskit.atlassian.com/packages/design-system/menu)
*/
declare const Section: import("react").ForwardRefExoticComponent<SectionProps & import("react").RefAttributes<HTMLElement>>;
export default Section;