import { Box } from "@chakra-ui/layout"; import { Popover, PopoverArrow, PopoverBody, PopoverContent, PopoverTrigger, } from "@chakra-ui/popover"; import { CSSVariables } from "utils/CSSVariables"; import { CirclePicker } from "react-color"; interface Props { color: string; setColor: (color: string) => void; } const ColorPicker: React.FC = ({ color, setColor }) => { return ( <> setColor(hex)} /> ); }; export default ColorPicker;