import { IoMdOptions } from 'react-icons/io'; import { useAppDispatch } from '../../app/store'; import IAIIconButton from '../../common/components/IAIIconButton'; import { setShouldShowOptionsPanel } from '../options/optionsSlice'; const ShowHideOptionsPanelButton = () => { const dispatch = useAppDispatch(); const handleShowOptionsPanel = () => { dispatch(setShouldShowOptionsPanel(true)); }; return ( ); }; export default ShowHideOptionsPanelButton;