UNPKG

@availity/reactstrap-validation-date

Version:

Wrapper for react-date-range to work with availity-reactstrap-validation

23 lines (19 loc) 571 B
import { AvDateProps } from './AvDate'; export interface AvDateFieldProps extends AvDateProps { label?: React.ReactNode; labelHidden?: boolean; disabled?: boolean; readOnly?: boolean; inputClass?: string; labelClass?: string; helpMessage?: string | object; errorMessage?: string | object; labelAttrs?: React.HTMLAttributes<HTMLLabelElement>; groupAttrs?: object; grid?: object; children?: React.ReactType; name: string; size?: string | number; } declare const AvDateField: React.ComponentType<AvDateFieldProps>; export default AvDateField;