import "./editor.scss"; import Popup from "../popup/popup"; const SelectDropdown = ({ label, options, attributes, setAttributes, attributesKey, onClick = null, className = "", onClose, }) => { return ( <> {/* */} ); }; export default SelectDropdown; const SelectDropField = ({ options, attributes, setAttributes, attributesKey, onClick = null, className = "", onClose, }) => { const selectHandler = (value) => { if (onClick) { onClick(value); } else { setAttributes({ [attributesKey]: value }); } }; return ( ); };