JSPM

  • Created
  • Published
  • Downloads 46217
  • Score
    100M100P100Q167802F
  • License MIT

Color Sketch component for React.

Package Exports

  • @uiw/react-color-sketch

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@uiw/react-color-sketch) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React Color Sketch

npm bundle size npm version Open in unpkg

Sketch Component is a subcomponent of @react-color.

react-color-sketch

Install

npm i @uiw/react-color-sketch

Usage

import Sketch from '@uiw/react-color-sketch';

function Demo() {
  const [hex, setHex] = useState("#fff");
  return (
    <Sketch
      style={{ marginLeft: 20 }}
      color={hex}
      onChange={(color) => {
        setHex(color.hex);
      }}
    />
  );
}

Props

import { ColorResult } from '@uiw/color-convert';
export type PresetColor = { color: string; title: string } | string;
export interface SketchProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'color'> {
  prefixCls?: string;
  width?: number;
  color?: string | HsvaColor;
  presetColors?: false | PresetColor[];
  editableDisable?: boolean;
  onChange?: (newShade: ColorResult) => void;
}

License

Licensed under the MIT License.