'use client'; import { EarnDetails } from '@/earn/components/EarnDetails'; import type { EarnWithdrawProps } from '../types'; import { EarnCard } from './EarnCard'; import { WithdrawAmountInput } from './WithdrawAmountInput'; import { WithdrawBalance } from './WithdrawBalance'; import { WithdrawButton } from './WithdrawButton'; function EarnWithdrawDefaultContent() { return ( <> ); } export function EarnWithdraw({ children = , className, }: EarnWithdrawProps) { return {children}; }