// Copyright 2025 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { ReactNode } from 'react'; import React from 'react'; import type { Placement } from 'react-aria'; import { Dialog, Popover } from 'react-aria-components'; import classNames from 'classnames'; import { ThemeType } from '../../../types/Util'; export type FunPopoverProps = Readonly<{ placement?: Placement; theme?: ThemeType; children: ReactNode; }>; export function FunPopover(props: FunPopoverProps): JSX.Element { return ( {props.children} ); }