We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for bringing react-color back to live!
As I'm migrating, I'm missing an import Fields. This is the code I had before:
Fields
import {CustomPicker as customPicker} from 'react-color'; import Fields from 'react-color/lib/components/sketch/SketchFields'; import {Hue, Saturation} from 'react-color/lib/components/common'; const Custom = (props) => ( <div className="colorpicker__outer"> <div className="colorpicker__controls +flex"> <div className="colorpicker__sliders"> <div className="colorpicker__slider"> <Hue {...props} /> </div> </div> </div> <div className="colorpicker__saturation"> <Saturation {...props} /> </div> <div className="colorpicker__custom-input"> <Fields {...props} onChange={props.onChangeComplete} /> </div> <div className="colorpicker__swatches"> <CompactPicker {...props} /> </div> </div> );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for bringing react-color back to live!
As I'm migrating, I'm missing an import
Fields
. This is the code I had before:The text was updated successfully, but these errors were encountered: