UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 272 B
import { OTPProps } from 'antd/es/input/OTP'; import { FC } from 'react'; import { INPUT_OTP } from '../../../Types'; export interface IInputOTP { ctype: typeof INPUT_OTP; props: OTPProps; } declare const InputOTP: FC<IInputOTP>; export default InputOTP;