import { AmountPanel } from "../AmountPanel";

export const SwapPanelFiat = () => {
  return (
    <div className="flex flex-col x-border rounded-x_radius">
      <div className="flex justify-between">
        <AmountPanel type={"source"} />
      </div>
    </div>
  );
};
