import React, { forwardRef } from 'react' import { MenuSection as RACMenuSection, type MenuSectionProps as RACMenuSectionProps, } from 'react-aria-components' export type MenuSectionProps = RACMenuSectionProps /** * A
element used to separate s */ export const MenuSection = forwardRef( (props, ref): JSX.Element => , ) MenuSection.displayName = 'MenuSection'