1import {Box, Paper} from '@mui/material';
2import SearchField from './SearchField';
3
4type Props = {};
5
6const MapActions = (props: Props) => {
7 return (
8 <Box component={Paper} p={1} maxWidth={350}>
9 <SearchField />
10 </Box>
11 );
12};
13
14export default MapActions;