react-restyle-components
Version:
Easy use restyle components
16 lines (15 loc) • 427 B
TypeScript
import React from 'react';
import './input-otp.styles.css';
import '../../../../tc.css';
interface PinInputGridProps {
title?: string;
hasError?: boolean;
className?: string;
disable?: boolean;
blur?: any;
name?: string;
pin: Array<number | undefined>;
onPinChanged: (pinEntry: number | undefined, index: number) => void;
}
export declare const InputOtp: React.FC<PinInputGridProps>;
export {};