Animated trading price display that smoothly transitions the currency value and percentage change with a colored up/down indicator.
import NumberFlowTrading from "@/components/ui/number-flow-trading"; export default function Demo() { return ( <div className="flex min-h-[300px] w-full flex-col items-center justify-center bg-background p-10 text-foreground"> <NumberFlowTrading /> </div> ); }