import React from 'react' import SketchPicker from 'react-color/lib/Sketch' import { COLORS } from '../lib/constants' import { stringifyColor } from '../lib/util' const pickerStyle = { backgroundColor: COLORS.BLACK, padding: '8px 8px 0', margin: '0 auto 1px', } export default function ColorPicker(props) { const [color, setColor] = React.useState(props.color) const { onChange = () => {}, presets, style, disableAlpha } = props return ( ) }