import { OTPVerification } from "@/components/ui/otp-input";
const settings = { stiffness: 700, damping: 20, y: 10, opacity: 0 };
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen flex items-center justify-center">
<OTPVerification {...s} />
</div>
);
}