import { TextInput } from '@/internal/components/TextInput'; import { isValidAmount } from '@/internal/utils/isValidAmount'; import { cn, text } from '@/styles/theme'; import { formatToDecimalString } from '@/internal/utils/formatter'; import type { EarnAmountInputProps } from '../types'; export function EarnAmountInput({ className, disabled, value, onChange, 'aria-label': ariaLabel, }: EarnAmountInputProps) { return ( ); }