import { VFC } from "react"; import Box from "../../../Styled/Box"; import { useViewState } from "../../Context"; import { MapCredits } from "./Credits"; import { DistanceLegend } from "./DistanceLegend"; import { LocationBar } from "./LocationBar"; import { useTheme } from "styled-components"; export const BottomBar: VFC = () => { const viewState = useViewState(); const theme = useTheme(); return ( ); };