UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

23 lines (22 loc) 684 B
import React from "react"; import { SizeProps } from "../props/size-props"; import { JSXElementProps, SetValue } from "../props"; import { Value, Language } from "../types/date-picker"; export interface Props extends SizeProps { elementProps?: JSXElementProps; value: Value; setValue: SetValue<Value>; type?: string; pickerType?: number; hourType?: number; showCloseIcon?: boolean; showButtons?: boolean; weekStartDay?: number; orientation?: boolean; lang?: Language; onClose?: () => void; onSave?: () => void; onCancel?: () => void; } declare const DatePicker: React.FC<Props>; export default DatePicker;