material-color-picker-field
Version:
Color Picker field component with Material UI styles
27 lines (19 loc) • 556 B
Markdown
# Material Color Picker Field
Color Picker field component with Material UI styles.
## Documentation
* You can find the documentation of the use and props of this component in the following link: https://hgleyder.github.io/Material-Color-Picker-Field/
### Installation
* yarn add material-color-picker-field
* npm install --save material-color-picker-field
### Usage
```javascript
import ColorPickerField from 'material-color-picker-field';
...
...
return (
<ColorPickerField
label="Example color"
value="#f50057"
/>
)
```