Package Exports
- @uiw/react-color-chrome
- @uiw/react-color-chrome/cjs/index.js
- @uiw/react-color-chrome/esm/index.js
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-chrome) 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 Chrome
Chrome Component is a subcomponent of @react-color
.

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.