'use client'; import type { WithdrawAmountInputProps } from '../types'; import { EarnAmountInput } from './EarnAmountInput'; import { useEarnContext } from './EarnProvider'; export function WithdrawAmountInput({ className }: WithdrawAmountInputProps) { const { withdrawAmount, setWithdrawAmount } = useEarnContext(); return ( ); }