UNPKG

@coreui/react-pro

Version:

UI Components Library for React.js

9 lines (8 loc) 399 B
import React, { InputHTMLAttributes } from 'react'; export interface COneTimePasswordInputProps extends InputHTMLAttributes<HTMLInputElement> { /** * A string of all className you want applied to the component. */ className?: string; } export declare const COneTimePasswordInput: React.ForwardRefExoticComponent<COneTimePasswordInputProps & React.RefAttributes<HTMLInputElement>>;