import clsx from "clsx";
import { Link } from "react-router";
import type {
CryptocurrenciesListResponse,
SimpleCryptoCurrency
} from "~/types/crypto-api";
import { formatPercentage } from "~/utils/format";
function PricingRow({
currency,
index
}: {
currency: SimpleCryptoCurrency;
index: number;
}) {
return (