Socket
Socket
Sign inDemoInstall

@uiw/react-color-colorful

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uiw/react-color-colorful

Color Colorful


Version published
Weekly downloads
23K
increased by6.91%
Maintainers
1
Weekly downloads
 
Created
Source

React Color Colorful

npm bundle size npm version Open in unpkg

Colorful Component is a subcomponent of @react-color.

react-color-colorful

Install

npm i @uiw/react-color-colorful

Usage

import React, { useState } from 'react';
import Colorful from '@uiw/react-color-colorful';

function Demo() {
  const [hex, setHex] = useState("#59c09a");
  return (
    <>
      <Colorful
        color={hex}
        onChange={(color) => {
          setHex(color.hexa);
        }}
      />
      <div style={{ background: hex, marginTop: 30, padding: 10 }}>
        {hex}
      </div>
    </>
  );
}
export default Demo;

Props

import React from 'react';
import { HsvaColor, ColorResult } from '@uiw/color-convert';
export interface ColorfulProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'color'> {
  prefixCls?: string;
  onChange?: (color: ColorResult) => void;
  color?: string | HsvaColor;
}

License

Licensed under the MIT License.

Keywords

FAQs

Package last updated on 29 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc