1.0.1 • Published 3 years ago
react-clock-emoji
Licence
ISC
Version
1.0.1
Deps
0
Size
343 kB
Vulns
0
Weekly
0
React Clock Emoji
Simple component that renders the closest clock emoji to the current time.
Installation
npm install react-clock-emoji
Usage
import React from 'react'
import ClockEmoji from 'react-clock-emoji'
const App = () => {
return <ClockEmoji time={"15:45"} defaultTime={"12:00"}/>
}
Props
| Name | Type | Default | Description |
|---|---|---|---|
| time | string | number | Date | undefined |
null | Time to render the clock emoji for. |
| defaultTime | string | number | Date |
null | Time to render the clock emoji for if time is null. |
If time is a number, it is assumed to be the number of minutes since midnight. If time is a string, it is assumed to start with "HH:mm".
Time will always be modulates to ensure it is within the allowed range.