pagamio-frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
17 lines (16 loc) • 447 B
TypeScript
import React from 'react';
interface CardExpiryInputProps {
field: {
name: string;
label: string;
disabled?: boolean;
placeholder?: string;
};
error?: {
message: string;
};
value: string;
onChange: (value: string) => void;
}
declare const CardExpiryInput: React.ForwardRefExoticComponent<CardExpiryInputProps & React.RefAttributes<HTMLInputElement>>;
export default CardExpiryInput;