1.3.0 • Published 6 years ago
simple-react-time-picker v1.3.0
Simple-React-Time-Picker
A simple time picker component for a React App.
Installation
Install by executing
npm i simple-react-time-picker
or
yarn add simple-react-time-picker.
Demo
A minimal demo is available here!
Documentation
Include component into your project with
import TimePicker from 'simple-react-time-pickerMinimum setup for the component is the following
<TimePicker />With the usage of props onChange you can obtain current time selected as a moment.js object.
Props
| Prop name | Description | Default value | Example values |
|---|---|---|---|
| TwelveHours | Time format, if 12 or 24 | true | true |
| title | Title of the Time Picker | Select a time | Select a time |
| onChange | Callback trigger at each selection | n/a | n/a |
| withoutTitle | If it is set to true, title is hidden | false | true |
| mobile | It triggers mobile visualization | false | true |
| vertical | Checkbox are placed vertically | false | true |
| textCentered | Text inside checkbox is centered | false | true |