import React, { memo, forwardRef } from 'react'; import { usePropsResolution } from '../../../hooks'; import { default as Box, IBoxProps } from '../../primitives/Box'; const PopoverFooter = (props: IBoxProps, ref?: any) => { const newProps = usePropsResolution('PopoverFooter', props); return ; }; export default memo(forwardRef(PopoverFooter));