bento-charts
Version:
Charts library for Bento-platform
8 lines (7 loc) • 354 B
TypeScript
import type { ReactNode } from 'react';
import type { BaseMapProps } from '../../types/mapTypes';
interface MapContainerProps extends BaseMapProps {
children: ReactNode;
}
declare const BentoMapContainer: ({ height, center, zoom, children, tileLayer }: MapContainerProps) => import("react/jsx-runtime").JSX.Element;
export default BentoMapContainer;