"use client"; import { motion } from "framer-motion"; import { ArrowUpDown } from "lucide-react"; import { CurrencySelect } from "@/components/converter/currency-select"; import { Button } from "@/components/ui/button"; import type { RateAsset } from "@/lib/rates"; interface ConverterCardPairSelectionProps { assets: RateAsset[]; fromCode: string; toCode: string; shouldReduceMotion: boolean; swapAnimationStep: number; onFromChange: (code: string) => void; onToChange: (code: string) => void; onSwap: () => void; } export function ConverterCardPairSelection({ assets, fromCode, toCode, shouldReduceMotion, swapAnimationStep, onFromChange, onToChange, onSwap, }: ConverterCardPairSelectionProps) { return (
); }