UNPKG

@suolun/verification-code

Version:
14 lines (11 loc) 326 B
import React from 'react' interface VerifationCodeProps { onGetVerifationCode: (value: string) => void len?: number autoFocus?: boolean type?: 'text' | 'number' | 'tel' defaultValue?: string } declare const VerifationCode: React.FC<VerifationCodeProps> export default VerifationCode export { VerifationCodeProps }