// ThemeDropdown.tsx import React from 'react'; const ThemeDropdown: React.FC<{ selectedTheme: string; // Currently selected theme setSelectedTheme: (theme: string) => void; // Function to update the selected theme }> = ({ selectedTheme, setSelectedTheme }) => { // Define available theme options const themeOptions = [ { value: 'IOMARKET', label: 'IOMARKET' }, { value: 'WHITE', label: 'WHITE' }, { value: 'BLACK', label: 'BLACK' }, { value: 'BASIC-CUSTOM', label: 'BASIC-CUSTOM' }, { value: 'CUSTOM', label: 'CUSTOM' }, ]; return (
{/* Container for the dropdown */}

Select Theme

{/* Label for the dropdown */}
); }; export default ThemeDropdown;