react-restyle-components
Version:
Easy use restyle components
17 lines (16 loc) • 438 B
TypeScript
import React from 'react';
import './input.styles.css';
import '../../../../tc.css';
interface PinInputGridProps {
title: string;
hasError?: any;
errorMsg?: string;
defaultMsg?: string;
className?: string;
disable?: boolean;
name?: string;
defaultPin: Array<number | undefined>;
onPinChanged: (item: any, index: number) => void;
}
export declare const InputPin: React.FC<PinInputGridProps>;
export {};