1.1.3 • Published 6 months ago

react-color-picker-package v1.1.3

Weekly downloads
-
License
-
Repository
-
Last release
6 months ago

React Color Picker Component

A customizable and lightweight React color picker component to integrate easily into your projects.

Features

  • Easy to use and customizable
  • Supports real-time color updates
  • Minimal and intuitive design

Installation

To install the package, run the following command:

npm install react-color-picker-package
import React, { useState } from 'react';
import ColorPicker from 'react-color-picker-package';

function App() {
  const [color, setColor] = useState('#ff0000');

  return (
    <div>
      <h1>React Color Picker</h1>
      <ColorPicker 
        defaultColor={color} 
        onChange={(newColor) => setColor(newColor)} 
      />
      <p>Selected Color: {color}</p>
    </div>
  );
}

export default App;
1.1.3

6 months ago

1.1.2

6 months ago

1.1.1

6 months ago

1.1.0

6 months ago

1.0.0

6 months ago