import React, { forwardRef, FunctionComponent } from "react"; import classNames from "classnames"; import { Box, BoxProps } from "../Box"; import { THEME } from "../../types"; import { bem } from "../../utilities/bem"; const cn = "PopoverMenu"; export interface PopoverMenuProps extends BoxProps { hidden?: boolean; theme?: THEME; } export const PopoverMenu: FunctionComponent = forwardRef< HTMLDivElement, PopoverMenuProps >((props, ref) => { const { children, className, hidden, theme = THEME.PRODUCT, ...rest } = props; return ( ); });