NeoTerm UI

CountUp

Animated number counter that interpolates from one value to another.

Import

import { CountUp } from "neoterm-ui";

Usage

<CountUp to={1234} />
<CountUp from={0} to={99.9} decimals={1} prefix="$" suffix="M" duration={2000} />

Props

PropTypeDefaultDescription
tonumberTarget value.
fromnumber0Starting value.
durationnumber1000Animation duration in ms.
decimalsnumber0Decimal places.
prefixstringText before the number.
suffixstringText after the number.