mochi-ui
Version:
Mochi UI is a React component library that helps you build aweomse production ready UI components with a soft UI design.
14 lines (13 loc) • 325 B
TypeScript
import React from 'react';
type Props = {
domName?: string;
name?: string;
error?: string;
value: Date;
onChange: (date: Date) => void;
touched?: boolean;
setTouched?: () => void;
disabled?: boolean;
};
declare const TimePicker: (props: Props) => React.JSX.Element;
export default TimePicker;