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

29 lines
840 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
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>
);
}