@neoaren/time-picker
v1.0.1
Published
A modern and easy-to-use React time picker component
Downloads
4
Maintainers
Readme
Time Picker
⏰ A modern and easy-to-use React time picker component
Install
Install the time picker
npm install --save @neoaren/time-picker
Peer dependencies
This component uses React >=16.8.0
and React DOM >=16.8.0
as peer dependencies.
Install them using npm
npm install --save react react-dom
Usage
import React from 'react';
import TimePicker from '@neoaren/time-picker';
const App = () => {
return (
<TimePicker id="my-timepicker" />
);
};
Component API
| Name | Type | Required | Description |
|-------------- |:---------------: |:--------: |---------------------------------------------------------------------------------------------------------------------------------------------------- |
| id | String
| true
| The unique identifier of the time-picker element. |
| defaultValue | Number
Date
| false
| The default value of the time-picker. |
| onChange | Function
| false
| This function runs when the selected time changes. The only parameter to be passed is an object containing the selected time in different formats. |
| placeholder | String
| false
| The text to be displayed when no time is selected. |
License
MIT © NeoAren