import type { DivProps } from 'lib/ui/types.js' export function EmptyPlaceholder({ children, ...props }: DivProps): JSX.Element { return (
{children}
) }