@uiw/react-color-chrome
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

React Color Chrome

Buy me a coffee npm bundle size npm version Open in unpkg

Chrome Component is a subcomponent of @react-color.

react-color-chrome

Install

npm i @uiw/react-color-chrome

Usage

import React, { useState } from 'react';
import Chrome from '@uiw/react-color-chrome';
import { GithubPlacement } from '@uiw/react-color-github';

function Demo() {
  const [hex, setHex] = useState("#d29c9c53");
  return (
    <>
      <Chrome
        color={hex}
        style={{ float: 'left' }}
        placement={GithubPlacement.Right}
        onChange={(color) => {
          setHex(color.hexa);
        }}
      />
      <Chrome
        color={hex}
        placement={GithubPlacement.TopRight}
        onChange={(color) => {
          setHex(color.hexa);
        }}
      />
      <div style={{ background: hex, marginTop: 30, padding: 10 }}>
        {hex}
      </div>
    </>
  );
}
export default Demo;

Props

import React from 'react';
import { GithubProps } from '@uiw/react-color-github';
export declare enum ChromeInputType {
    HEXA = "hexa",
    RGBA = "rgba",
    HSLA = "hsla"
}
export interface ChromeProps extends Omit<GithubProps, 'colors'> {
    inputType?: ChromeInputType;
}
declare const Chrome: React.ForwardRefExoticComponent<ChromeProps & React.RefAttributes<HTMLDivElement>>;
export default Chrome;

Contributors

As always, thanks to our amazing contributors!

Made with contributors.

License

Licensed under the MIT License.

Package Sidebar

Install

npm i @uiw/react-color-chrome

Weekly Downloads

9,918

Version

2.1.1

License

MIT

Unpacked Size

32.2 kB

Total Files

12

Last publish

Collaborators

  • uiwjs
  • wcjiang