@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
16 lines (15 loc) • 597 B
TypeScript
export declare const PopoverPicker: ({ color, onChange, }: {
color: string;
onChange: (color: string) => void;
}) => import("react/jsx-runtime").JSX.Element;
export declare function ColorPopover({ anchorEl, onChange, onClose, color, }: {
color: string;
anchorEl: HTMLElement | null;
onChange: (val: string) => void;
onClose: () => void;
}): import("react/jsx-runtime").JSX.Element;
export declare function ColorPicker({ onChange, color, }: {
color: string;
onChange: (val: string) => void;
}): import("react/jsx-runtime").JSX.Element;
export default PopoverPicker;