all repos — caroster @ mdraps-main-patch-e989

[Octree] Group carpool to your event https://caroster.io

frontend/containers/Map/MapActions.tsx (view raw)

 1import {Box, Paper} from '@mui/material';
 2import SearchField from './SearchField';
 3
 4type Props = {};
 5
 6const MapActions = (props: Props) => {
 7  return (
 8    <Box zIndex={400} position="relative" top={75} left={25} right={25}>
 9      <Box component={Paper} p={1} maxWidth={`calc(100vw - 50px)`} width={350}>
10        <SearchField />
11      </Box>
12    </Box>
13  );
14};
15
16export default MapActions;