import React from "react"; import { TwitterPicker } from "react-color"; import { Popover } from "./Popover"; export function ColorPicker({ color, onChange }: { color: string | null; onChange: (color: string) => void; }) { const [isActive, setActive] = React.useState(false); return (
); }