mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 17:33:18 +01:00
22 lines
634 B
TypeScript
22 lines
634 B
TypeScript
'use client'
|
|
|
|
import { useLocale } from '@/features/prices/hooks/use-locale'
|
|
import { TriangleDownIcon, TriangleUpIcon } from '@radix-ui/react-icons'
|
|
import styles from './PriceChange.module.css'
|
|
|
|
export function PriceChange({ priceChange }: { priceChange: number }) {
|
|
const locale = useLocale()
|
|
const styleClasses = priceChange > 0 ? styles.positive : styles.negative
|
|
|
|
return (
|
|
<span
|
|
className={`${styles.change} ${styleClasses}`}
|
|
title="24h change"
|
|
data-locale={locale}
|
|
>
|
|
{priceChange > 0 ? <TriangleUpIcon /> : <TriangleDownIcon />}
|
|
{Math.abs(priceChange).toFixed(1)}%
|
|
</span>
|
|
)
|
|
}
|