// ThemeDropdown.tsx import React from 'react'; const ThemeDropdown: React.FC<{ selectedTheme: string; setSelectedTheme: (theme: string) => void; }> = ({ selectedTheme, setSelectedTheme }) => { 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 (

Select Theme

); }; export default ThemeDropdown;