import React, { ReactElement } from 'react' import { formatCurrency } from '@coingecko/cryptoformat' import Conversion from './Conversion' import styles from './PriceUnit.module.css' import { useUserPreferences } from '@context/UserPreferences' export function formatPrice(price: number, locale: string): string { return formatCurrency(price, '', locale, false, { // Not exactly clear what `significant figures` are for this library, // but setting this seems to give us the formatting we want. // See https://github.com/oceanprotocol/market/issues/70 significantFigures: 4 }) } export default function PriceUnit({ price, className, size = 'small', conversion, symbol, type }: { price: number type?: string className?: string size?: 'small' | 'mini' | 'large' conversion?: boolean symbol?: string }): ReactElement { const { locale } = useUserPreferences() return (