Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 19x 4x 4x 4x 19x 4x | import React from "react";
import { GoogleMaps } from "@services/google-api";
import useLoadGoogleScript from "@hooks/google-api/useLoadGoogleScript";
import GiveText from "@shared/Text/GiveText";
import { styled } from "@theme/v2/Provider";
import { Stack } from "@mui/material";
interface Props {
locations: any;
hideTitle?: boolean;
containerStyle?: any;
mapContainerPadding?: string;
}
const EventMap = ({
locations,
hideTitle = false,
containerStyle,
mapContainerPadding,
}: Props) => {
const { isLoaded, loadError } = useLoadGoogleScript();
const { locationShortAddress } = locations;
return (
<MapContainer padding={mapContainerPadding}>
{!hideTitle && <GiveText variant="bodyL">Location</GiveText>}
<GoogleMaps
address={locationShortAddress}
isLoaded={isLoaded}
loadError={loadError}
containerStyle={{
height: "480px",
borderRadius: "12px",
minHeight: "200px",
...containerStyle,
}}
/>
</MapContainer>
);
};
export default EventMap;
const MapContainer = styled(Stack)<{ padding?: string }>(({ padding }) => {
return {
padding: padding || "32px 0",
gap: "16px",
flex: 1,
};
});
|