Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.07 KB

README.md

File metadata and controls

41 lines (29 loc) · 1.07 KB

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-picker

Minimum 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