UNPKG

@capgeminiuk/dcx-react-library

Version:

[![CircleCI](https://circleci.com/gh/Capgemini/dcx-react-library.svg?style=svg)](https://circleci.com/gh/Capgemini/dcx-react-library)

14 lines (13 loc) 516 B
import React from 'react'; import { DateType } from './FormDate'; type DateProps = DateType & { value: string; name: string; htmlFor: string; disabled?: boolean; maxLength?: number; handleChange: (evt: React.FormEvent<HTMLInputElement>) => void; tabIndex?: number; }; export declare const DateComponent: ({ value, htmlFor, name, handleChange, classNameLabel, customLabel, classNameSpan, label, classNameInput, disabled, maxLength, tabIndex, }: DateProps) => React.JSX.Element; export {};