'use client'; import { AmountInputTypeSwitch } from '@/internal/components/amount-input/AmountInputTypeSwitch'; import type { FundCardAmountInputTypeSwitchProps } from '../types'; import { useFundContext } from './FundCardProvider'; export const FundCardAmountInputTypeSwitch = ({ className, }: FundCardAmountInputTypeSwitchProps) => { const { selectedInputType, setSelectedInputType, asset, fundAmountFiat, fundAmountCrypto, exchangeRate, exchangeRateLoading, currency, } = useFundContext(); return ( ); }; export default FundCardAmountInputTypeSwitch;