import * as React from "react"; import { DropdownMenuItemProps } from "./DropdownMenuItem"; export interface DropdownSectionProps { children: | React.ReactElement | Array>; /** * Allows one section to be a sticky footer within the dropdown */ footer?: boolean; } const DropdownSection = ({ children }: DropdownSectionProps) => <>{children}; export default DropdownSection;