signal-desktop/ts/components/fun/base/FunPopover.tsx

30 lines
863 B
TypeScript
Raw Normal View History

// 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 (
<Popover
2025-04-10 14:50:00 -07:00
data-fun-overlay
className={classNames('FunPopover', {
'light-theme': props.theme === ThemeType.light,
'dark-theme': props.theme === ThemeType.dark,
})}
placement={props.placement}
>
<Dialog className="FunPopover__Dialog">{props.children}</Dialog>
</Popover>
);
}