0.2.2 • Published 5 years ago

react-color-grid v0.2.2

Weekly downloads
17
License
-
Repository
github
Last release
5 years ago

React Color Grid

  • Show your lovely colors and copy them to the clipboard

readme-image

Simple Example

import React, { Component } from "react";
import { ColorGrid } from "react-color-grid";

class App extends Component {
  render() {
    const colors = {
      items: [
        {
          colorCode: "#1866e2",
          textColor: "white"
        },
        {
          colorCode: "#e23d17",
          textColor: "white"
        }
      ]
    }
    return (
      <div>
        <ColorGrid
          colors={colors}
        />
      </div>
    );
  }
}

export default App;

PropTypes

PropsTypeDefaultDescription
colorsobjectnoneobject containing the property items which itself is an array of colors
colors.itemsarray of objectsnoneobject containing colorCode and textColor properties

Roadmap

  • replace the tooltip library and toastify with css to increase performance.
  • add tests
  • improve documentation

Inspiration

http://ux.mailchimp.com/patterns/color https://hackernoon.com/creating-a-library-of-react-components-using-create-react-app-without-ejecting-d182df690c6b