// 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 (
{props.children}
); } export type FunWaterfallItemProps = Readonly<{ 'data-key': string; width: number; height: number; offsetY: number; offsetX: number; children: ReactNode; }>; export function FunWaterfallItem(props: FunWaterfallItemProps): JSX.Element { return (
{props.children}
); }