UNPKG

@atlaskit/menu

Version:

A list of options to help users navigate, or perform actions.

12 lines (11 loc) 443 B
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;