UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

14 lines (13 loc) 460 B
import React from "react"; import { TextFieldProps } from "../TextField"; export interface CodeFieldProps extends Omit<TextFieldProps, "type"> { length?: number; minLength?: number; maxLength?: number; validateCode?: (code: string) => boolean | string | null; resendCode?: () => void; resendText?: string; clear?: string; } /** 📌 Fully Optimized `CodeField` Component */ export declare const CodeField: React.FC<CodeFieldProps>;