diff --git a/src/component/v2/forms.tsx b/src/component/v2/forms.tsx
index 0578ed0a..1bd1de37 100644
--- a/src/component/v2/forms.tsx
+++ b/src/component/v2/forms.tsx
@@ -2,7 +2,7 @@
import * as SliderPrimitive from '@radix-ui/react-slider';
import { clsx } from 'clsx';
-import { motion } from 'motion/react';
+import { motion, useSpring, useTransform } from 'motion/react';
import { CircleAlert, Eye, EyeOff } from 'lucide-react';
import React, { FC, useEffect, useId, useState } from 'react';
import { Button } from './button';
@@ -131,6 +131,19 @@ export const SettingPasswordVertical: FC<{
// --- Slider/Range Components ---
+const springConfig = { mass: 0.8, stiffness: 75, damping: 15 };
+
+const AnimatedNumber = ({ value }: { value: number }) => {
+ const spring = useSpring(value, springConfig);
+ const display = useTransform(spring, (current) => Math.round(current).toLocaleString());
+
+ useEffect(() => {
+ spring.set(value);
+ }, [spring, value]);
+
+ return