import React from "react"; import { CurrencyOption, getCurrencyString, ProductPrice } from "../../index"; import { Chip, Select, SelectItem } from "@firecms/ui"; export interface SubscriptionPriceSelectParams { currencies: Record<"eur" | "usd", CurrencyOption>; selectedCurrency?: string; setSelectedCurrency: (currency: string) => void; largePriceLabel: boolean; fullWidth?: boolean; price: ProductPrice; } export function CurrencyPriceSelect({ currencies, setSelectedCurrency, largePriceLabel, selectedCurrency, fullWidth = true, price }: SubscriptionPriceSelectParams) { return ; }