import React from "react"; import { EyeDroperIcon } from "../../icons/ExportCommonIcons"; import RegularDropDown from "./RegularDropDown"; interface EyeDropInputProps { label: string; value: string; onChange: (value: string) => void; options?: string[]; } const EyeDropInput: React.FC = ({ label = "Object", onChange, }) => { const handleEyeDropClick = () => { // Here you would typically implement the eye dropper functionality // For now, we'll just simulate selecting a value const simulatedValue = "picked_value"; // Replace with actual eye dropper logic onChange(simulatedValue); }; return (
{label}
{/* */} { }} />
); }; export default EyeDropInput;