UNPKG

mochi-ui

Version:

Mochi UI is a React component library that helps you build aweomse production ready UI components with a soft UI design.

18 lines (17 loc) 404 B
import React from 'react'; type Props = { domName: string; value: Date; onChange: (date: Date) => void; name: string; error: string; date: boolean; time: boolean; endYear: number; startYear: number; touched?: boolean; setTouched?: () => void; disabled: boolean; }; declare const DatePicker: (props?: Props) => React.JSX.Element; export default DatePicker;