Multiple independent odometer instances with leaky integrator animation
// Basic odometer (no theme)
import { OdometerDisplay } from "@/components/odometer";
<OdometerDisplay
targetValue={12345.67}
initialValue={0}
scale={0.5}
/>
// Themed odometer (with background & frame)
import { ThemedOdometer } from "@/components/odometer";
<ThemedOdometer
themePath="/odometer-assets/themes/1/1/1920x1080"
backgroundImage="01-Background_Jacks.png"
frameImage="01-Frame.png"
targetValue={12345.67}
scale={0.5}
/>