UNPKG

@atlaskit/menu

Version:

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

12 lines (11 loc) 446 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: React.ForwardRefExoticComponent<React.PropsWithoutRef<SectionProps> & React.RefAttributes<HTMLElement>>; export default Section;