UNPKG

@arolariu/components

Version:

🎨 60+ beautiful, accessible React components built on Radix UI. TypeScript-first, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡

12 lines • 774 B
import * as React from "react"; import { OTPInput } from "input-otp"; declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps<typeof OTPInput> & { containerClassName?: string; }): import("react/jsx-runtime").JSX.Element; declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & { index: number; }): import("react/jsx-runtime").JSX.Element; declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator }; //# sourceMappingURL=input-otp.d.ts.map