import styles from '@components/Popover.module.css'; import * as React from 'react'; interface PopoverProps extends React.HTMLAttributes {} const Popover = React.forwardRef(({ style: propStyle, ...rest }, ref) => { const style: React.CSSProperties = { ...propStyle }; return
; }); Popover.displayName = 'Popover'; export default Popover;