Cron Expression UI: Input component to generate cron expressions easily and intuitively, as in https://crontab.guru/
### Examples
Instructions
### NPM
Install the package from https://www.npmjs.com/cron-expression-input
```
npm install cron-expression-input@1.2.7
```
In your code
``` javascript
import "cron-expression-input/lib/cron-expression-input.min.css"; /* CSS */
require("cron-expression-input"); /* JAVASCRIPT */
```
### CDN
Add the CDN to your project
``` html
```
### Usage
You can pass various attributes to the component to modify its behavior, Example with color attribute:
|Name|Type|Default|Description|
|:--:|:--:|:-----:|:----------|
|**`width`**|`{String}`|`100%`|The width of the component input|
|**`height`**|`{String}`|`34px`|The height of the component input|
|**`color`**|`{String}`|`#d58512`|The main color that the component elements will take, (Only in hexadecimal)|
Thanks
* [@TheCloudConnectors](https://github.com/TheCloudConnectors), For your npm package to validate the structure of a cron expression [cron-validator](https://github.com/TheCloudConnectors/cron-validator).
* [@bamotav](https://github.com/bamotav), For the idea of creating this web component.