import { setIsSettingsModalOpen } from "../../state/modals"; import { useDispatch } from "react-redux"; import { Settings as SettingsIcon } from "react-feather"; // Component that lets you set the parameters for fetching quotes or building a transaction. export const Settings = () => { const dispatch = useDispatch(); const toggleSettingsModal = (value: boolean) => { dispatch(setIsSettingsModalOpen(value)); }; return ( <> ); };