// Copyright 2025 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { CSSProperties, ReactNode } from 'react'; import React from 'react'; /** * Components */ export type FunWaterfallContainerProps = Readonly<{ totalSize: number; children: ReactNode; }>; export function FunWaterfallContainer( props: FunWaterfallContainerProps ): JSX.Element { return (