signal-desktop/ts/components/fun/base/FunPanel.tsx
Jamie Kyle 1cced9b3ac
Init Fun Picker
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2025-02-19 17:31:33 -08:00

12 lines
340 B
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ReactNode } from 'react';
import React from 'react';
export type FunPanelProps = Readonly<{
children: ReactNode;
}>;
export function FunPanel(props: FunPanelProps): JSX.Element {
return <div className="FunPanel">{props.children}</div>;
}